file360

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
using System.Text;
using Microsoft.Phone.Storage;

namespace File360
{
    class vaultlist
    {

        public string VaultName { set; get; }
        public string VaultName2 { set; get; }

        public vaultlist(string Vaultname, string VaultsubFolderCount)
        {
            this.VaultName = Vaultname;
            this.VaultName2 = VaultsubFolderCount;
        }
    }
}