* 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 System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections
|
|
{
|
|
public record PagedSmartCollectionsViewModel(int TotalCount, List<SmartCollectionViewModel> Page);
|
|
}
|