readonly usage inconsistency

This commit is contained in:
Lyssa 2025-04-06 19:33:14 +04:00
parent f6353e567a
commit be6682e8c3

View File

@ -81,7 +81,7 @@ namespace LibTSforge
};
// 2^31 - 8 minutes
public static ulong TimerMax = (ulong)TimeSpan.FromMinutes(2147483640).Ticks;
public static readonly ulong TimerMax = (ulong)TimeSpan.FromMinutes(2147483640).Ticks;
public static readonly string ZeroCID = new string('0', 48);
}