export interface IPagingable {
    includeTotal?: boolean;
    itemLimit?: number;
    skip?: number;
}
