Files
luthor/otis/src/app/compliance-list/compliance-list-item.ts
tanshu e4783bc64e Compliance list done.
Except for the cleanup of the hearing import data, This is the first version.
2021-01-19 08:45:26 +05:30

21 lines
465 B
TypeScript

export class ComplianceListItem {
id: string;
officeFileNumber: string;
courtNumber: string;
itemNumber: string;
title: string;
proceedings: string;
complianceDate: string;
public constructor(init?: Partial<ComplianceListItem>) {
this.id = '';
this.officeFileNumber = '';
this.courtNumber = '';
this.itemNumber = '';
this.title = '';
this.proceedings = '';
this.complianceDate = '';
Object.assign(this, init);
}
}