// ----------------------------------------------------------------------- // // TODO: Update copyright text. // // ----------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Collections.Specialized; namespace Pithos.Interfaces { /// /// PITHOS Account Settings /// public class AccountSettings { public string AccountName { get; set; } public string ApiKey { get; set; } public bool IsActive { get; set; } public string RootPath { get; set; } private StringCollection _selectiveFolders = new StringCollection(); public StringCollection SelectiveFolders { get { return _selectiveFolders; } set { _selectiveFolders = value; } } } //[Serializable] public class AccountsCollection:List {} }