* start to add smart collections * add smart collection table; delete smart collection * overwrite smart collections * support scheduling smart collections * update changelog
10 lines
253 B
C#
10 lines
253 B
C#
using ErsatzTV.Core;
|
|
using LanguageExt;
|
|
using MediatR;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections.Commands
|
|
{
|
|
public record CreateSmartCollection
|
|
(string Query, string Name) : IRequest<Either<BaseError, SmartCollectionViewModel>>;
|
|
}
|