10 lines
274 B
TypeScript
10 lines
274 B
TypeScript
|
export class LicenseInfo {
|
||
|
artist: string = "";
|
||
|
license: string = "";
|
||
|
licenseShortName: string = "";
|
||
|
usageTerms: string = "";
|
||
|
attributionRequired: boolean = false;
|
||
|
copyrighted: boolean = false;
|
||
|
credit: string = "";
|
||
|
description: string = "";
|
||
|
}
|