GoogleApiOptions.cs 472 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GreenTree.Strohrmann.ERP.Services.Geolocator
  5. {
  6. public class GoogleApiOptions
  7. {
  8. /// <summary>
  9. /// The Google provided API key
  10. /// </summary>
  11. public string ApiKey { get; set; }
  12. /// <summary>
  13. /// <i>True</i> to enable the Geocoding service to validate the address
  14. /// </summary>
  15. public bool Enabled { get; set; }
  16. }
  17. }