export interface User {
	username: string;
	fullName: string;
	email?: string;
	profilePhoto?: string | null;
	role?: "ADMIN" | "NONADMIN";
}
