/Geocoding/Artem.GoogleGeocoding/GeoResult.cs
# · C# · 47 lines · 15 code · 9 blank · 23 comment · 0 complexity · 24268caa0d38ffa6e2b3f068ab21b6bb MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace Artem.Google.Net {
-
- /// <summary>
- ///
- /// </summary>
- public class GeoResult {
-
- #region Properties
-
- /// <summary>
- /// Gets or sets the address_components.
- /// </summary>
- /// <value>The address_components.</value>
- public IEnumerable<GeoAddress> AddressComponents { get; set; }
-
- /// <summary>
- /// Gets or sets the formatted_address.
- /// </summary>
- /// <value>The formatted_address.</value>
- public string FormattedAddress { get; set; }
-
- /// <summary>
- /// Gets or sets the geometry.
- /// </summary>
- /// <value>The geometry.</value>
- public Geometry Geometry { get; set; }
-
- /// <summary>
- /// Gets or sets the partial_match.
- /// </summary>
- /// <value>The partial_match.</value>
- public string PartialMatch { get; set; }
-
- /// <summary>
- /// Gets or sets the types.
- /// </summary>
- /// <value>The types.</value>
- public string[] Types { get; set; }
-
- #endregion
- }
- }