11 lines
No EOL
297 B
TypeScript
11 lines
No EOL
297 B
TypeScript
export class LicenseInfo {
|
|
title: string = ""
|
|
artist: string = "";
|
|
license: string = "";
|
|
licenseShortName: string = "";
|
|
usageTerms: string = "";
|
|
attributionRequired: boolean = false;
|
|
copyrighted: boolean = false;
|
|
credit: string = "";
|
|
description: string = "";
|
|
} |