Files
ersatztv/ErsatzTV.Core.Nullable/Api/ScriptedPlayout/PlayoutContext.cs
T
Jason DoveandGitHub 7bd8cefe2e more dotnet 10 updates (#2676)
* update more libraries to dotnet 10

* fix dockerfiles

* fix numeric types
2025-11-29 15:47:08 -06:00

19 lines
589 B
C#

using System.ComponentModel;
namespace ErsatzTV.Core.Api.ScriptedPlayout;
public record PlayoutContext
{
[Description("The current time of the playout build")]
public required DateTimeOffset CurrentTime { get; set; }
[Description("The start time of the playout build")]
public required DateTimeOffset StartTime { get; set; }
[Description("The finish time of the playout build")]
public required DateTimeOffset FinishTime { get; set; }
[Description("Indicates whether the current playout build is complete")]
public required bool IsDone { get; set; }
}