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