/Geocoding/Artem.GoogleGeocoding/GeoAddress.cs
# · C# · 35 lines · 13 code · 7 blank · 15 comment · 0 complexity · 89a05a6214684bef990467dbf6359c69 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace Artem.Google.Net {
-
- /// <summary>
- ///
- /// </summary>
- public class GeoAddress {
-
- #region Properties
-
- /// <summary>
- /// Gets or sets the long name.
- /// </summary>
- /// <value>The long name.</value>
- public string LongName { get; set; }
-
- /// <summary>
- /// Gets or sets the short name.
- /// </summary>
- /// <value>The short name.</value>
- public string ShortName { get; set; }
-
- /// <summary>
- /// Gets or sets the types.
- /// </summary>
- /// <value>The types.</value>
- public string[] Types { get; set; }
-
- #endregion
- }
- }