2021-09-29 23:56:59 +02:00
|
|
|
export class LicenseInfo {
|
2024-09-26 19:15:20 +02:00
|
|
|
title?: string = ""
|
2021-09-29 23:56:59 +02:00
|
|
|
artist: string = ""
|
2024-09-26 19:15:20 +02:00
|
|
|
license?: string = undefined
|
|
|
|
|
licenseShortName?: string = ""
|
|
|
|
|
usageTerms?: string = ""
|
|
|
|
|
attributionRequired?: boolean = false
|
|
|
|
|
copyrighted?: boolean = false
|
|
|
|
|
credit?: string = ""
|
|
|
|
|
description?: string = ""
|
|
|
|
|
informationLocation?: URL = undefined
|
2023-12-05 18:35:18 +01:00
|
|
|
date?: Date
|
|
|
|
|
views?: number
|
2021-09-29 23:56:59 +02:00
|
|
|
}
|