using System; using System.Collections.Generic; using System.Text; namespace GreenTree.Maschinenbestellungen.Services.Geolocator { public class GoogleApiOptions { /// /// The Google provided API key /// public string ApiKey { get; set; } /// /// True to enable the Geocoding service to validate the address /// public bool Enabled { get; set; } } }