You've already forked pigallery2
mirror of
https://github.com/bpatrik/pigallery2.git
synced 2026-05-16 09:21:12 +02:00
14 lines
195 B
TypeScript
14 lines
195 B
TypeScript
export enum UserRoles{
|
|
Guest = 1,
|
|
User = 2,
|
|
Admin = 3,
|
|
Developer = 4,
|
|
|
|
}
|
|
|
|
export interface UserDTO {
|
|
id: number;
|
|
name: string;
|
|
password: string;
|
|
role: UserRoles;
|
|
} |