16 lines
544 B
TypeScript
16 lines
544 B
TypeScript
import IDeedHasDocumentType from "./IDeedHasDocumentType";
|
|
import IDeedTypeHasDocumentType from "./IDeedTypeHasDocumentType";
|
|
import IDocument from "./IDocument";
|
|
export default class IDocumentType {
|
|
uuid: string;
|
|
name: string;
|
|
public_description: string;
|
|
private_description: string | null;
|
|
archived_at: Date | null;
|
|
created_at: Date | null;
|
|
updated_at: Date | null;
|
|
documents?: IDocument[];
|
|
deed_has_document_types?: IDeedHasDocumentType[];
|
|
deed_type_has_document_types?: IDeedTypeHasDocumentType[];
|
|
}
|