import { IImageModelAttributes } from "../../Base/entities/image.entity";
import { RoleType } from "../enum/role.enum";
export interface IUserModelAttributes {
    name: string;
    email: string;
    password: string;
    phoneNumber: string;
    isActive: boolean;
    image?: IImageModelAttributes;
    roles: RoleType[];
}
