Initial Commit
This commit is contained in:
17
src/com/flaremicro/visualforecast/datamart/TownInfo.java
Normal file
17
src/com/flaremicro/visualforecast/datamart/TownInfo.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package com.flaremicro.visualforecast.datamart;
|
||||
|
||||
public class TownInfo {
|
||||
public final String code;
|
||||
public final String townName;
|
||||
public final String province;
|
||||
public final float northLat;
|
||||
public final float westLong;
|
||||
|
||||
public TownInfo(String code, String townName, String province, float northLat, float westLong) {
|
||||
this.code = code;
|
||||
this.townName = townName;
|
||||
this.province = province;
|
||||
this.northLat = northLat;
|
||||
this.westLong = westLong;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user