2025-03-10 21:27:03 -04:00

7 lines
104 B
TypeScript

export interface AuthResponse {
id: number;
roles: string[];
token: string;
username: string;
}