Files
ersatztv/ErsatzTV.Core/SystemTime.cs
T
Jason DoveandGitHub 245c4ec359 code analysis and cleanup (#1411)
* cleanup scanner project

* cleanup infrastructure projects

* cleanup ffmpeg project

* cleanup core project

* cleanup app project

* cleanup main project

* update dependencies

* code cleanup
2023-09-03 06:23:42 -05:00

8 lines
238 B
C#

namespace ErsatzTV.Core;
public static class SystemTime
{
public static readonly DateTime MinValueUtc = new(0, DateTimeKind.Utc);
public static readonly DateTime MaxValueUtc = new(DateTime.MaxValue.Ticks, DateTimeKind.Utc);
}