8 lines
207 B
C#
8 lines
207 B
C#
using ErsatzTV.Core;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Application.Configuration.Commands
|
|
{
|
|
public record UpdatePlayoutDaysToBuild(int DaysToBuild) : MediatR.IRequest<Either<BaseError, Unit>>;
|
|
}
|