@alisdigital/types-library
Version:
TypeScript type definitions for Papilet ecosystem with session soft delete and event management features
16 lines (15 loc) • 455 B
TypeScript
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>;
}