32 lines
674 B
TypeScript
32 lines
674 B
TypeScript
interface DataLeaveType {
|
|
code?: string;
|
|
createdAt?: string;
|
|
createdFullName?: string;
|
|
createdUserId?: string;
|
|
id: string;
|
|
lastUpdateFullName?: string;
|
|
lastUpdateUserId?: string;
|
|
lastUpdatedAt?: string;
|
|
limit?: number;
|
|
name: string;
|
|
}
|
|
|
|
interface DataLeaveBeginning {
|
|
createdAt: string;
|
|
createdFullName: string;
|
|
firstName: string;
|
|
id: string;
|
|
lastName: string;
|
|
lastUpdateFullName: string;
|
|
lastUpdatedAt: string;
|
|
leaveDays: number;
|
|
leaveDaysUsed: number;
|
|
leaveType: string;
|
|
leaveTypeCode: string;
|
|
leaveTypeId: string;
|
|
leaveYear: number;
|
|
prefix: string;
|
|
profileId: string;
|
|
}
|
|
|
|
export type { DataLeaveType, DataLeaveBeginning };
|