lecoffre-ressources/dist/Interfaces/IAddressAdmin.d.ts
2023-03-22 13:01:05 +01:00

13 lines
301 B
TypeScript

import IContact from "./IContactAdmin";
import IOffice from "./IOfficeAdmin";
export default class IAddressAdmin {
uuid: string;
address: string;
city: string;
zip_code: number;
created_at: Date | null;
updated_at: Date | null;
office?: IOffice;
contacts?: IContact;
}