PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/Geocoding/Artem.GoogleGeocoding/GeoResult.cs

#
C# | 47 lines | 15 code | 9 blank | 23 comment | 0 complexity | 24268caa0d38ffa6e2b3f068ab21b6bb MD5 | raw file
Possible License(s): MIT
  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 GeoResult {
  10. #region Properties
  11. /// <summary>
  12. /// Gets or sets the address_components.
  13. /// </summary>
  14. /// <value>The address_components.</value>
  15. public IEnumerable<GeoAddress> AddressComponents { get; set; }
  16. /// <summary>
  17. /// Gets or sets the formatted_address.
  18. /// </summary>
  19. /// <value>The formatted_address.</value>
  20. public string FormattedAddress { get; set; }
  21. /// <summary>
  22. /// Gets or sets the geometry.
  23. /// </summary>
  24. /// <value>The geometry.</value>
  25. public Geometry Geometry { get; set; }
  26. /// <summary>
  27. /// Gets or sets the partial_match.
  28. /// </summary>
  29. /// <value>The partial_match.</value>
  30. public string PartialMatch { get; set; }
  31. /// <summary>
  32. /// Gets or sets the types.
  33. /// </summary>
  34. /// <value>The types.</value>
  35. public string[] Types { get; set; }
  36. #endregion
  37. }
  38. }