13 lines
349 B
C#
13 lines
349 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.ProgramSchedules;
|
|
|
|
public record UpdateProgramSchedule
|
|
(
|
|
int ProgramScheduleId,
|
|
string Name,
|
|
bool KeepMultiPartEpisodesTogether,
|
|
bool TreatCollectionsAsShows,
|
|
bool ShuffleScheduleItems,
|
|
bool RandomStartPoint) : IRequest<Either<BaseError, UpdateProgramScheduleResult>>;
|