MapComplete/src/Logic/ImageProviders/LicenseInfo.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
382 B
TypeScript
Raw Normal View History

export class LicenseInfo {
title?: string = ""
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
}