Statistics
| Branch: | Revision:

root / trunk / Pithos.Interfaces / AccountSettings.cs @ 0eea575a

History | View | Annotate | Download (1 kB)

1
// -----------------------------------------------------------------------
2
// <copyright file="AccountSettings.cs" company="Microsoft">
3
// TODO: Update copyright text.
4
// </copyright>
5
// -----------------------------------------------------------------------
6

    
7

    
8
using System;
9
using System.Collections.Generic;
10
using System.Collections.Specialized;
11

    
12
namespace Pithos.Interfaces
13
{
14
    /// <summary>
15
    /// PITHOS Account Settings
16
    /// </summary>
17
    public class AccountSettings
18
    {
19
        
20
        public string AccountName { get; set; }
21

    
22
        
23
        public string ApiKey { get; set; }
24

    
25
        public bool IsActive { get; set; }
26

    
27
        public string RootPath { get; set; }
28

    
29
        private StringCollection _selectiveFolders = new StringCollection();
30

    
31
        
32
        public StringCollection SelectiveFolders
33
        {
34
            get { return _selectiveFolders; }
35
            set { _selectiveFolders = value; }
36
        }
37
    }
38

    
39
    //[Serializable]
40
    public class AccountsCollection:List<AccountSettings>
41
    {}
42
}