* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
11 lines
321 B
C#
11 lines
321 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.ProgramSchedules;
|
|
|
|
public record UpdateProgramSchedule
|
|
(
|
|
int ProgramScheduleId,
|
|
string Name,
|
|
bool KeepMultiPartEpisodesTogether,
|
|
bool TreatCollectionsAsShows,
|
|
bool ShuffleScheduleItems) : IRequest<Either<BaseError, UpdateProgramScheduleResult>>; |