21 lines
465 B
TypeScript
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);
|
|
}
|
|
}
|