Advertisement
Guest User

Untitled

a guest
Nov 12th, 2013
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. public class City
  2. {
  3.     public int id { get; set; }
  4.     public string country { get; set; }
  5.     public string region { get; set; }
  6.     public string city { get; set; }
  7.     public double latitude { get; set; }
  8.     public double longitude { get; set; }
  9.     public string comment { get; set; }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement