13 lines
234 B
TypeScript
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 = ""
|
|
} |