hrms-admin/src/modules/01_metadata/interface/response/position/Main.ts
2024-09-05 14:14:15 +07:00

15 lines
256 B
TypeScript

interface ResPosType {
id: string;
posTypeName: string;
posTypeRank: number;
posLevels: PosLevels[];
}
interface PosLevels {
id: string;
posLevelAuthority: string;
posLevelName: string;
posLevelRank: number;
}
export type { ResPosType };