Files

9 lines
235 B
C#
Raw Permalink Normal View History

2025-08-07 22:34:25 +03:00
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();
}