import { IUserModelAttributes } from "../../Auth/entities/user.entity";
import { ICustomerModelAttributes } from "./customer.entity";
export interface ICommentModelAttributes {
    _id: string;
    assignedTo: ICustomerModelAttributes;
    createdBy: IUserModelAttributes;
    content: string;
}
