18 lines
378 B
C#
18 lines
378 B
C#
namespace DiscordBotCore.Interfaces.Updater;
|
|
|
|
public interface IVersion
|
|
{
|
|
public int Major { get; }
|
|
public int Minor { get; }
|
|
public int Patch { get; }
|
|
public int PatchVersion => 0;
|
|
|
|
public bool IsNewerThan(IVersion version);
|
|
|
|
public bool IsOlderThan(IVersion version);
|
|
|
|
public bool IsEqualTo(IVersion version);
|
|
|
|
public string ToShortString();
|
|
}
|