7 lines
193 B
C#
7 lines
193 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections
|
|
{
|
|
public record PagedMediaCollectionsViewModel(int TotalCount, List<MediaCollectionViewModel> Page);
|
|
}
|