22 lines
207 B
C#
22 lines
207 B
C#
namespace UltimateWater.Utils
|
|
{
|
|
public class Versioning
|
|
{
|
|
public static string Name
|
|
{
|
|
get
|
|
{
|
|
return "2.1.0";
|
|
}
|
|
}
|
|
|
|
public static int Number
|
|
{
|
|
get
|
|
{
|
|
return 210;
|
|
}
|
|
}
|
|
}
|
|
}
|