mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-04-23 10:42:37 -04:00
14 lines
306 B
C#
14 lines
306 B
C#
namespace allstarr;
|
|
|
|
/// <summary>
|
|
/// Single source of truth for application version.
|
|
/// Update this value when releasing a new version.
|
|
/// </summary>
|
|
public static class AppVersion
|
|
{
|
|
/// <summary>
|
|
/// Current application version.
|
|
/// </summary>
|
|
public const string Version = "1.5.0";
|
|
}
|