Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.8/HeuristicLab.GeoIP/1.12/Region.cs @ 9480

Last change on this file since 9480 was 8040, checked in by ascheibe, 12 years ago

#1648 integrated server parts of the access service into trunk

File size: 523 bytes
Line 
1using System;
2using System.IO;
3public class Region{
4  public String countryCode;
5  public String countryName;
6  public String region;
7  public Region(){
8  }
9  public Region(String countryCode,String countryName,String region){
10      this.countryCode = countryCode;
11      this.countryName = countryName;
12      this.region = region;
13  }
14  public String getcountryCode() {
15      return countryCode;
16  }
17  public String getcountryName() {
18      return countryName;
19  }
20  public String getregion() {
21      return region;
22  }
23}
24
Note: See TracBrowser for help on using the repository browser.