mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
12 lines
324 B
TypeScript
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;
|
|
}
|
|
|
|
}
|