14 lines
430 B
C#
14 lines
430 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Scheduling;
|
|
|
|
namespace ErsatzTV.Application.ProgramSchedules;
|
|
|
|
public record CreateProgramSchedule(
|
|
string Name,
|
|
bool KeepMultiPartEpisodesTogether,
|
|
bool TreatCollectionsAsShows,
|
|
bool ShuffleScheduleItems,
|
|
bool RandomStartPoint,
|
|
FixedStartTimeBehavior FixedStartTimeBehavior,
|
|
int? PadToNearestMinute) : IRequest<Either<BaseError, CreateProgramScheduleResult>>;
|