Compliance list done.
Except for the cleanup of the hearing import data, This is the first version.
This commit is contained in:
20
otis/src/app/compliance-list/compliance-list-item.ts
Normal file
20
otis/src/app/compliance-list/compliance-list-item.ts
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user