10 lines
255 B
C#
10 lines
255 B
C#
namespace ErsatzTV.Application.ProgramSchedules;
|
|
|
|
public record ProgramScheduleViewModel(
|
|
int Id,
|
|
string Name,
|
|
bool KeepMultiPartEpisodesTogether,
|
|
bool TreatCollectionsAsShows,
|
|
bool ShuffleScheduleItems,
|
|
bool RandomStartPoint);
|