* start to add smart collections * add smart collection table; delete smart collection * overwrite smart collections * support scheduling smart collections * update changelog
7 lines
193 B
C#
7 lines
193 B
C#
using MediatR;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections.Queries
|
|
{
|
|
public record GetPagedSmartCollections(int PageNum, int PageSize) : IRequest<PagedSmartCollectionsViewModel>;
|
|
}
|