Moved to Json Database for online plugins
This commit is contained in:
14
PluginManager/Interfaces/Updater/IVersion.cs
Normal file
14
PluginManager/Interfaces/Updater/IVersion.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace PluginManager.Interfaces.Updater;
|
||||
|
||||
public interface IVersion
|
||||
{
|
||||
public int Major { get; }
|
||||
public int Minor { get; }
|
||||
public int Patch { get; }
|
||||
|
||||
public bool IsNewerThan(IVersion version);
|
||||
public bool IsOlderThan(IVersion version);
|
||||
public bool IsEqualTo(IVersion version);
|
||||
|
||||
public string ToShortString();
|
||||
}
|
||||
Reference in New Issue
Block a user