export interface UserDetails {
    username: string;
    password: string;
    roles: string[];
}
