export interface CollectionResponse<T> {
    data: T;
    total?: number;
}
