7 lines
104 B
TypeScript
7 lines
104 B
TypeScript
export interface AuthResponse {
|
|
id: number;
|
|
roles: string[];
|
|
token: string;
|
|
username: string;
|
|
}
|