Compliance list done.

Except for the cleanup of the hearing import data, This is the first version.
This commit is contained in:
2021-01-19 08:16:02 +05:30
parent 2b5cf93ece
commit e4783bc64e
28 changed files with 561 additions and 26 deletions

View File

@ -0,0 +1,20 @@
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);
}
}