/**
 * Model (business layer) is a primary representation of the widget in the system,
 * which gets updated by editors and rendered by the presentation layer.
 */
export class ReportsByApiModel { 
    public pageSize: number;
    public customFilterStartTime: string;
    public customFilterEndTime: string;
}