import { IEntityCreateDto, IOfficeLocationEntity } from "../../entities"; /** status is set by the entity flow, never by the client */ export type IOfficeLocationCreateExclude = "status"; export interface IOfficeLocationCreateDto extends Omit, IOfficeLocationCreateExclude> { }