* start to add smart collections * add smart collection table; delete smart collection * overwrite smart collections * support scheduling smart collections * update changelog
8 lines
198 B
C#
8 lines
198 B
C#
using System.Collections.Generic;
|
|
using MediatR;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections.Queries
|
|
{
|
|
public record GetAllSmartCollections : IRequest<List<SmartCollectionViewModel>>;
|
|
}
|