lecoffre-ressources/dist/Notary/FileNotary.d.ts
2024-09-09 03:20:37 +02:00

14 lines
336 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;
}