using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Settings; namespace Tango.FSE.BL { public class ServicesSettings : SettingsBase { /// /// Gets or sets a value indicating whether to perform full organization machines caching on successful connection. /// public bool PerformFullOrganizationMachinesCaching { get; set; } /// /// Initializes a new instance of the class. /// public ServicesSettings() { PerformFullOrganizationMachinesCaching = false; } } }