czydojade/front/resources/ts/model/provider.ts
2020-11-01 17:57:06 +01: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;
}