Files
module-farmasi/types/setting/roleMaster.ts
T
2026-04-10 14:40:11 +07:00

29 lines
502 B
TypeScript

export interface PaginationMeta {
page: number;
limit: number;
total: number;
total_pages: number;
}
export interface RoleMaster {
id: number;
name: string;
active: boolean;
created_at: string | null;
updated_at: string | null;
select?: boolean | null;
}
export interface RoleMasterResponse {
status: string;
message: string;
data: RoleMaster;
}
export interface RoleMasterListResponse {
status: string;
message: string;
data: RoleMaster[];
meta: PaginationMeta;
}