export interface CollectionResponse<T> {
    TotalCount: number;
    Items: T[];
}
