29 lines
521 B
C#
29 lines
521 B
C#
namespace AyaNova.Util
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// Version strings centrally located for convenience
|
|
/// </summary>
|
|
internal static class AyaNovaVersion
|
|
{
|
|
public static string VersionString
|
|
{
|
|
get
|
|
{
|
|
return "8.0.0-alpha.2019.Dec.24";
|
|
}
|
|
}
|
|
|
|
public static string FullNameAndVersion
|
|
{
|
|
get
|
|
{
|
|
return "AyaNova server v" + VersionString;
|
|
}
|
|
}
|
|
|
|
|
|
}//eoc
|
|
|
|
}//eons |