MapComplete/src/Logic/ImageProviders/LicenseInfo.ts

15 lines
382 B
TypeScript
Raw Normal View History

export class LicenseInfo {
title?: string = ""
2022-09-08 21:40:48 +02:00
artist: string = ""
license?: string = undefined
licenseShortName?: string = ""
usageTerms?: string = ""
attributionRequired?: boolean = false
copyrighted?: boolean = false
credit?: string = ""
description?: string = ""
informationLocation?: URL = undefined
date?: Date
views?: number
2022-09-08 21:40:48 +02:00
}