15 lines
398 B
TypeScript
15 lines
398 B
TypeScript
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[];
|
|
}
|