mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
10 lines
197 B
C#
10 lines
197 B
C#
using System;
|
|
|
|
namespace mRemoteNG.Config.Serializers.Versioning
|
|
{
|
|
public interface IVersionUpgrader
|
|
{
|
|
bool CanUpgrade(Version currentVersion);
|
|
Version Upgrade();
|
|
}
|
|
} |