lecoffre-ressources/dist/Notary/FileNotary.d.ts
2024-09-09 05:31:07 +02:00

15 lines
366 B
TypeScript

import Resource from "../Resource";
import { DocumentNotary } from ".";
export default class FileNotary extends Resource {
uid?: string;
document?: DocumentNotary;
file_name: string;
file_path: string;
mimetype: string;
hash: string;
size: number;
created_at: Date | null;
updated_at: Date | null;
archived_at: Date | null;
}