* upgrade dependencies * allow blocks with same name in different groups * code cleanup
9 lines
246 B
C#
9 lines
246 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public record UpdateCollection(int CollectionId, string Name) : IRequest<Either<BaseError, Unit>>
|
|
{
|
|
public Option<bool> UseCustomPlaybackOrder { get; set; } = None;
|
|
}
|