mapcomplete/Logic/ImageProviders/LicenseInfo.ts

11 lines
304 B
TypeScript
Raw Normal View History

export class LicenseInfo {
title: string = ""
artist: string = "";
2022-06-13 00:51:53 +02:00
license: string = undefined;
licenseShortName: string = "";
usageTerms: string = "";
attributionRequired: boolean = false;
copyrighted: boolean = false;
credit: string = "";
description: string = "";
}