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; }
|
2025-10-06 19:25:24 -05:00
|
|
|
void Update(Action<Settings> patch);
|
2025-10-02 19:41:47 -05:00
|
|
|
}
|