Initial commit

This commit is contained in:
Jason Dove
2021-02-08 21:13:53 -06:00
commit 4d52e115b5
493 changed files with 31399 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
namespace ErsatzTV.Core.Domain
{
public class PlayoutAnchor
{
public int NextScheduleItemId { get; set; }
public ProgramScheduleItem NextScheduleItem { get; set; }
public DateTimeOffset NextStart { get; set; }
}
}