2021-09-29 23:56:59 +02:00
|
|
|
export class LicenseInfo {
|
2021-10-07 22:06:47 +02:00
|
|
|
title: string = ""
|
2021-09-29 23:56:59 +02:00
|
|
|
artist: string = ""
|
2022-06-13 00:51:53 +02:00
|
|
|
license: string = undefined
|
2021-09-29 23:56:59 +02:00
|
|
|
licenseShortName: string = ""
|
|
|
|
usageTerms: string = ""
|
|
|
|
attributionRequired: boolean = false
|
|
|
|
copyrighted: boolean = false
|
|
|
|
credit: string = ""
|
|
|
|
description: string = ""
|
2022-08-30 20:29:49 +02:00
|
|
|
informationLocation: URL = undefined
|
2021-09-29 23:56:59 +02:00
|
|
|
}
|