UNPKG

cecon-interfaces

Version:
13 lines (12 loc) 300 B
import { ICompany } from "./i-company"; import { IEntity } from "./i-entity"; export interface IPartner extends IEntity { active: boolean; company: ICompany; companyId: string; containerId: string; createdAt: Date; name: string; pictureUrl: string; updatedAt: Date; }