feat: implement saveFile method

This commit is contained in:
StevanFreeborn
2023-02-03 16:01:20 -06:00
parent 1b046b4cfc
commit 3dee5b690c
7 changed files with 147 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
export class CreatedWithIdResponse {
/**
* @property {number} id - The id of the created object.
*/
public id: number;
/**
* @constructor - Creates a new instance of the CreatedWithIdResponse class.
* @param id - The id of the created object.
* @returns {CreatedWithIdResponse} - A new instance of the CreatedWithIdResponse class.
*/
constructor(id: number) {
this.id = id;
}
}