LANCommander/LANCommander.SDK/Abstractions/ISettingsProvider.cs

11 lines
232 B
C#
Raw Permalink Normal View History

2025-10-02 19:41:47 -05:00
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);
2025-10-02 19:41:47 -05:00
}