import IDeedTypeHasDocumentType from "./IDeedTypeHasDocumentType"; import IOffice from "./IOffice"; import IDeed from "./IDeed"; export default class IDeedType { uuid: string; name: string; description: string; archived_at: Date; office: IOffice; created_at?: Date; updated_at?: Date; deed?: IDeed[]; deed_type_has_document_types?: IDeedTypeHasDocumentType[]; }