/Geocoding/Artem.GoogleGeocoding/GeoAddress.cs

# · C# · 35 lines · 13 code · 7 blank · 15 comment · 0 complexity · 89a05a6214684bef990467dbf6359c69 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Artem.Google.Net {
  6. /// <summary>
  7. ///
  8. /// </summary>
  9. public class GeoAddress {
  10. #region Properties
  11. /// <summary>
  12. /// Gets or sets the long name.
  13. /// </summary>
  14. /// <value>The long name.</value>
  15. public string LongName { get; set; }
  16. /// <summary>
  17. /// Gets or sets the short name.
  18. /// </summary>
  19. /// <value>The short name.</value>
  20. public string ShortName { get; set; }
  21. /// <summary>
  22. /// Gets or sets the types.
  23. /// </summary>
  24. /// <value>The types.</value>
  25. public string[] Types { get; set; }
  26. #endregion
  27. }
  28. }