satupeta-main/shared/types/role.ts
2026-02-23 12:21:05 +07:00

7 lines
101 B
TypeScript
Executable File

export interface Role {
id: string;
name: string;
description: string;
is_active: boolean;
}