import { IAppModelAttributes } from "../../Auth/entities/app.entity";
import { IBaseTimestampEntity } from "./base.entity";
import { IImageModelAttributes } from "./image.entity";
export interface IUserDetailModelAttributes {
    app: string | IAppModelAttributes;
    password: string;
    name: string;
    isActive: boolean;
    image?: IImageModelAttributes;
    roles: string[];
}
export interface IUserModelAttributes extends IBaseTimestampEntity {
    phoneNumber: string;
    details: IUserDetailModelAttributes[];
}
