hrms-admin/src/modules/01_metadata/interface/response/position/Main.ts

16 lines
256 B
TypeScript
Raw Normal View History

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