Files
ersatztv/ErsatzTV.Application/Playouts/PlayoutNameViewModel.cs
T
Jason DoveandGitHub 944f1e4307 add scheduled playout rebuild (#376)
* configure scheduled playout rebuild

* implement scheduled playout rebuild

* remove variable
2021-09-18 11:23:58 -05:00

13 lines
275 B
C#

using System;
using LanguageExt;
namespace ErsatzTV.Application.Playouts
{
public record PlayoutNameViewModel(
int PlayoutId,
string ChannelName,
string ChannelNumber,
string ScheduleName,
Option<TimeSpan> DailyRebuildTime);
}