LANCommander/LANCommander.SDK/Abstractions/ISettingsProvider.cs

11 lines
No EOL
232 B
C#

using System;
using System.Threading.Tasks;
using LANCommander.SDK.Models;
namespace LANCommander.SDK.Abstractions;
public interface ISettingsProvider
{
Settings CurrentValue { get; }
void Update(Action<Settings> patch);
}