All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mossol.bot.model.LocationInfo Maven / Gradle / Ivy

There is a newer version: 0.0.3.8
Show newest version
package net.mossol.bot.model;

import org.springframework.data.annotation.Id;

import lombok.AllArgsConstructor;
import lombok.Data;

@Data
public class LocationInfo {
    @Id
    private String id;
    private String title;
    private double latitude;
    private double longitude;
    private MenuType type;

    public LocationInfo() {

    }

    public LocationInfo(String title, double latitude, double longitude, MenuType type) {
        this.title = title;
        this.latitude = latitude;
        this.longitude = longitude;
        this.type = type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy