11 lines
293 B
C#
11 lines
293 B
C#
|
|
#pragma warning disable IDE0130
|
|||
|
|
namespace CPSO.Settings
|
|||
|
|
{
|
|||
|
|
//[Serializable]
|
|||
|
|
public interface IViewSettings
|
|||
|
|
{
|
|||
|
|
// Methods
|
|||
|
|
ISettings GetBase();
|
|||
|
|
}
|
|||
|
|
}
|