GoogleApiOptions.cs 304 B

1234567891011121314
  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. }
  13. }