feat: make ProgramNumber settable

This commit is contained in:
Jeffery Thompson
2018-10-25 15:22:04 -04:00
parent b015c3a3d3
commit 51dcb41cdf

View File

@@ -8,17 +8,11 @@ namespace ICD.Common.Utils
{ {
public static partial class ProgramUtils public static partial class ProgramUtils
{ {
/// <summary> /// <summary>
/// Gets the program number. /// Gets the program number.
/// </summary> /// </summary>
[PublicAPI] [PublicAPI]
public static uint ProgramNumber public static uint ProgramNumber { get; set; } = 1;
{
get
{
return 1;
}
}
/// <summary> /// <summary>
/// Gets the compile date of the program. /// Gets the compile date of the program.