czydojade/resources/ts/model/provider.ts
2020-05-02 23:33:15 +02:00

12 lines
233 B
TypeScript

import { Moment } from "moment";
import { Location } from "./common";
export interface Provider {
id: string;
name: string;
shortName: string;
attribution?: string;
lastUpdate?: Moment;
location: Location;
}