/**
 * Admin panel user model
 *
 * Feel free to extend this model with additional properties
 */
export type AdminPanelUser = {
    id: number;
    firstname: string;
    lastname?: string;
    email: string;
};
