Skip to content
Snippets Groups Projects
authorization.ts 386 B
Newer Older
import type {  TThemes } from '@/interfaces/environment';
import type {IImage } from "@/interfaces/entities";

export interface IUserData {
  user_uuid: string;
  nick_name: string;
  first_name: string;
  last_name: string;
  middle_name: string;
  email: string;
  phone_number: string;
  settings: IUserSettings;
}
interface IUserSettings {
  theme: TThemes;
  background: IImage;
}