package com.vegaaa.skidata.model;
import java.util.Date;
/**
*
* @author WindowsUser
* @since 06.01.2011
*/
public class SkiTrackInfo {
private String DepthInPath;
private String DepthInTrack;
private SnowType_e SnowType;
private String LastSnowFall;
private String LastPowderAlarm;
private TrackInfoType_e trackInfoType;
public String getDepthInPath() {
return DepthInPath;
}
public void setDepthInPath(String depthInPath) {
DepthInPath = depthInPath;
}
public String getDepthInTrack() {
return DepthInTrack;
}
public void setDepthInTrack(String depthInTrack) {
DepthInTrack = depthInTrack;
}
public SnowType_e getSnowType() {
return SnowType;
}
public void setSnowType(SnowType_e snowType) {
SnowType = snowType;
}
public String getLastSnowFall() {
return LastSnowFall;
}
public void setLastSnowFall(String lastSnowFall) {
LastSnowFall = lastSnowFall;
}
public String getLastPowderAlarm() {
return LastPowderAlarm;
}
public void setLastPowderAlarm(String lastPowderAlarm) {
LastPowderAlarm = lastPowderAlarm;
}
public TrackInfoType_e getTrackInfoType() {
return trackInfoType;
}
public void setTrackInfoType(TrackInfoType_e trackInfoType) {
this.trackInfoType = trackInfoType;
}
@Override
public String toString() {
return "";
}
}
|