* add custom index to collection items * add custom collection order to ui * cleanup
13 lines
343 B
C#
13 lines
343 B
C#
using ErsatzTV.Core;
|
|
using LanguageExt;
|
|
using static LanguageExt.Prelude;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections.Commands
|
|
{
|
|
public record UpdateCollection
|
|
(int CollectionId, string Name) : MediatR.IRequest<Either<BaseError, Unit>>
|
|
{
|
|
public Option<bool> UseCustomPlaybackOrder { get; set; } = None;
|
|
}
|
|
}
|