9 lines
235 B
C#
9 lines
235 B
C#
namespace Nebula.Launcher.ViewModels.Pages;
|
|
|
|
public interface IConfigControl
|
|
{
|
|
public string ConfigName { get; }
|
|
public bool Dirty {get;}
|
|
public abstract void SetValue(object value);
|
|
public abstract object GetValue();
|
|
} |