Files
eventmaster/src/data/models/files/filesApiModel.ts
2024-11-25 18:55:28 +01:00

13 lines
234 B
TypeScript

export class FilesApiModel {
name: string
size: number
content: string
url: string
copyright: CopyRightModel = new CopyRightModel()
}
class CopyRightModel {
license: string = ""
creator: string = ""
url: string = ""
}