23 lines
495 B
TypeScript
23 lines
495 B
TypeScript
interface Discipline {
|
|
createdAt: Date | null;
|
|
createdFullName: string;
|
|
createdUserId: string;
|
|
date: Date | null;
|
|
detail: string;
|
|
id: string;
|
|
isDeleted: false;
|
|
isEntry: false;
|
|
isUpload: true;
|
|
lastUpdateFullName: string;
|
|
lastUpdateUserId: string;
|
|
lastUpdatedAt: Date | null;
|
|
level: string;
|
|
profileEmployeeId: string;
|
|
profileId: string;
|
|
refCommandDate: Date | null;
|
|
refCommandNo: string;
|
|
refCommandId: string;
|
|
unStigma: string;
|
|
}
|
|
|
|
export type { Discipline };
|