hrms-mgt/src/modules/18_command/interface/response/Main.ts

15 lines
307 B
TypeScript
Raw Normal View History

interface DataListCommand {
category: string;
commandCode: string;
createdAt: string | Date;
createdFullName: string;
createdUserId: string;
id: string;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: string | Date;
name: string;
}
export type { DataListCommand };