development
export class BaseFile { readonly id: string; readonly entity: string; readonly totalPages: number; constructor(id: string, entity: string, totalPages: number) { this.id = id; this.entity = entity; this.totalPages = totalPages; } }