9 lines
185 B
C#
9 lines
185 B
C#
|
namespace RustTools.Contracts.Services;
|
|||
|
|
|||
|
public interface ILocalSettingsService
|
|||
|
{
|
|||
|
Task<T?> ReadSettingAsync<T>(string key);
|
|||
|
|
|||
|
Task SaveSettingAsync<T>(string key, T value);
|
|||
|
}
|