import { IColumnModelAttributes } from "./column.entity";
import { ICommentModelAttributes } from "./comment.entity";
export interface ICustomerModelAttributes {
    _id: string;
    name: string;
    phone: string;
    city?: string;
    email?: string;
    website?: string;
    branding?: string;
    monthlyBudget?: string;
    message?: string;
    comments: ICommentModelAttributes[];
    column: IColumnModelAttributes<ICustomerModelAttributes>;
}
