UNPKG

dawn-interfaces

Version:

Dawn application interfaces

22 lines (20 loc) 445 B
export enum EClientType{ buyer = "buyer", seller = "seller", buyerAndSeller = "buyerAndSeller" } export enum EClientTemperature{ hot = "hot", warm = "warm", cold = "cold" } export interface IClientNotes{ clientId:string; lastLoginAt:Date; updatedAt:Date; updatedById:string; notes?:string; clientType:EClientType; clientTemperature: EClientTemperature; assignedAgencyId?:string | null; }