import { Address } from "./address";
export interface User {
    id: string;
    title?: string;
    firstName?: string;
    lastName?: string;
    createdAt?: Date;
    phone?: string;
    email?: string;
    address?: Address;
}
