Files
luthor/otis/src/app/core/hearing.ts
tanshu cd4a091b63 Compliance done field added to hearings.
Also the compliance list is not based on it and not the compliance date.
2021-01-20 11:53:40 +05:30

27 lines
654 B
TypeScript

import { CourtStatus } from './court-status';
export class Hearing {
id: string | undefined;
courtNumber: string;
itemNumber: string;
bench: string;
courtStatus: CourtStatus;
proceedings: string;
complianceDate: string | null;
complianceDone: boolean;
nextHearingDate: string | null;
public constructor(init?: Partial<Hearing>) {
this.id = undefined;
this.courtNumber = '';
this.itemNumber = '';
this.bench = '';
this.courtStatus = new CourtStatus();
this.proceedings = '';
this.complianceDate = null;
this.complianceDone = true;
this.nextHearingDate = null;
Object.assign(this, init);
}
}