mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
589 B
18 lines
589 B
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; } |
|
}
|
|
|