Cases add/edit should be working now. Along with the hearings in it
This commit is contained in:
22
otis/src/app/core/hearing.ts
Normal file
22
otis/src/app/core/hearing.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { CourtStatus } from './court-status';
|
||||
|
||||
export class Hearing {
|
||||
id: string | undefined;
|
||||
courtNumber: string;
|
||||
itemNumber: string;
|
||||
bench: string;
|
||||
courtStatus: CourtStatus | null;
|
||||
proceedings: string;
|
||||
nextHearingDate: string | null;
|
||||
|
||||
public constructor(init?: Partial<Hearing>) {
|
||||
this.id = undefined;
|
||||
this.courtNumber = '';
|
||||
this.itemNumber = '';
|
||||
this.bench = '';
|
||||
this.courtStatus = null;
|
||||
this.proceedings = '';
|
||||
this.nextHearingDate = '';
|
||||
Object.assign(this, init);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user