mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-11-13 15:25:39 +01:00
6 lines
94 B
TypeScript
6 lines
94 B
TypeScript
export interface FullUserModel {
|
|
username: string;
|
|
password: string;
|
|
roles: string[];
|
|
}
|