import { OrderCustomerTypeEnum } from '../enums/order-customer-type.enum'; export interface IOrderCustomerAttr { CustomerId: string; CustomerType: OrderCustomerTypeEnum; CRMRefNo: string; FullName: string; ContactNo: string; Email: string; IdNo: string; TaxIdentificationNo: string; ContactPersonName: string; ContactPersonContactNo: string; ContactPersonIdType: string; ContactPersonIdNo: string; CreatedById: string; CreatedAt: Date; UpdatedById: string; UpdatedAt: Date; }