export interface ODataPagedResult<T> {
    data: T[];
    count: number;
    nextLink: string;
}
