mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-11-13 07:15:39 +01:00
8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
|
|
import { Roles } from 'picsur-shared/dist/dto/roles.dto';
|
||
|
|
|
||
|
|
export interface FullUserModel {
|
||
|
|
username: string;
|
||
|
|
password: string;
|
||
|
|
roles: Roles;
|
||
|
|
}
|