import { Attr } from 'ts-framework' export interface PaginationRequestDTO { page?: number recordsPerPage?: number } export class PaginationRequestDTO implements PaginationRequestDTO { @Attr({ type: Number, optional: true }) page?: number; @Attr({ type: Number, optional: true }) recordsPerPage?: number; }