mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
10 lines
194 B
C#
10 lines
194 B
C#
using System;
|
|
|
|
namespace mRemoteNG.Config.Serializers.Versioning
|
|
{
|
|
public interface IVersionUpgrader
|
|
{
|
|
bool CanUpgrade(Version currentVersion);
|
|
void Upgrade();
|
|
}
|
|
} |