using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Pithos.Interfaces { public interface IPithosSettings { string PithosPath { get; set; } string IconsPath { get; set; } string UserName { get; set; } string ApiKey { get; set; } AccountsCollection Accounts { get; set; } bool UseDefaultProxy{get; set; } bool UseManualProxy { get; set; } bool UseNoProxy { get; set; } string ProxyServer { get; set; } int ProxyPort { get; set; } string ProxyUsername { get; set; } string ProxyPassword { get; set; } string ProxyDomain { get; set; } bool ProxyAuthentication{ get; set; } bool ExtensionsActivated { get; set; } int PollingInterval { get; set; } void Save(); void Reload(); } }