UNPKG

@alisdigital/types-library

Version:

TypeScript type definitions for Papilet ecosystem with session soft delete and event management features

9 lines (8 loc) 296 B
import { IUserModelAttributes } from "../../Auth/entities/user.entity"; import { ICustomerModelAttributes } from "./customer.entity"; export interface ICommentModelAttributes { _id: string; assignedTo: ICustomerModelAttributes; createdBy: IUserModelAttributes; content: string; }