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