/Geocoding/Artem.GoogleGeocoding/GeoBounds.cs

# · C# · 29 lines · 12 code · 6 blank · 11 comment · 0 complexity · 9019d3da0c8aad82aa2427955ede7c53 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 GeoBounds {
  10. #region Properties ///////////////////////////////////////////////////////////////////////
  11. /// <summary>
  12. /// Gets or sets the north east.
  13. /// </summary>
  14. /// <value>The north east.</value>
  15. public GeoLocation NorthEast { get; set; }
  16. /// <summary>
  17. /// Gets or sets the south west.
  18. /// </summary>
  19. /// <value>The south west.</value>
  20. public GeoLocation SouthWest { get; set; }
  21. #endregion
  22. }
  23. }