EvalueTonSavoir/server/models/image.ts
2024-09-30 21:08:52 -04:00

12 lines
324 B
TypeScript

import { User } from "./user";
export class Image {
constructor(public file_name: string, public file_content: Buffer, public mime_type: string, public owner: User) {
this.file_name = file_name;
this.file_content = file_content;
this.mime_type = mime_type;
this.owner = owner;
}
}