29 lines
522 B
C#
29 lines
522 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.June.12";
|
|
}
|
|
}
|
|
|
|
public static string FullNameAndVersion
|
|
{
|
|
get
|
|
{
|
|
return "AyaNova server v" + VersionString;
|
|
}
|
|
}
|
|
|
|
|
|
}//eoc
|
|
|
|
}//eons |