export interface BasicUser {
    'url'?: string;
    'id'?: number;
    'username': string;
    'first_name'?: string;
    'last_name'?: string;
}
