* configure scheduled playout rebuild * implement scheduled playout rebuild * remove variable
13 lines
275 B
C#
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);
|
|
}
|