export default interface IStation {
    title: string;
    region: string | null;
    value: number;
}
