19 lines
321 B
TypeScript
19 lines
321 B
TypeScript
/**
|
|
* Generated by orval v8.4.2 🍺
|
|
* Do not edit manually.
|
|
* DreamChat API
|
|
* The DreamChat API documentation
|
|
* OpenAPI spec version: 1.0.0
|
|
*/
|
|
|
|
/**
|
|
* User role
|
|
*/
|
|
export type UserDtoRole = typeof UserDtoRole[keyof typeof UserDtoRole];
|
|
|
|
|
|
export const UserDtoRole = {
|
|
USER: 'USER',
|
|
ADMIN: 'ADMIN',
|
|
} as const;
|