satupeta-main/shared/types/role.ts

7 lines
101 B
TypeScript
Raw Normal View History

2026-01-27 02:31:12 +00:00
export interface Role {
id: string;
name: string;
description: string;
is_active: boolean;
}