All files
[pithos-ms-client] / trunk / Pithos.Interfaces / IPithosSettings.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace Pithos.Interfaces
7 {
8     public interface IPithosSettings
9     {
10         string PithosPath { get; set; }
11         string IconsPath { get; set; }
12         string UserName { get; set; }
13         string ApiKey { get; set; }
14
15         void Save();
16         void Reload();
17     }
18 }