License system implemented

This commit is contained in:
2024-11-25 18:55:28 +01:00
parent f7cdaacceb
commit 85f34dd087
22 changed files with 313 additions and 18 deletions

View File

@@ -0,0 +1,13 @@
export class FilesApiModel {
name: string
size: number
content: string
url: string
copyright: CopyRightModel = new CopyRightModel()
}
class CopyRightModel {
license: string = ""
creator: string = ""
url: string = ""
}