| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GreenTree.Strohrmann.ERP.Services.Geolocator
- {
- public class GoogleApiOptions
- {
- /// <summary>
- /// The Google provided API key
- /// </summary>
- public string ApiKey { get; set; }
- /// <summary>
- /// <i>True</i> to enable the Geocoding service to validate the address
- /// </summary>
- public bool Enabled { get; set; }
- }
- }
|