net.mossol.bot.model.LocationInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of line_bot_mossol-lib Show documentation
Show all versions of line_bot_mossol-lib Show documentation
Line Bot Mossol (line_bot_mossol-lib)
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