14 lines
304 B
C#
14 lines
304 B
C#
namespace Gley.Common
|
|
{
|
|
public interface ISettingsWindowProperties
|
|
{
|
|
string VersionFilePath { get; }
|
|
string WindowName { get;}
|
|
int MinWidth { get;}
|
|
int MinHeight { get;}
|
|
|
|
string FolderName { get; }
|
|
string ParentFolder { get; }
|
|
}
|
|
}
|