mirror of
https://github.com/LanZhan-Harmony/WindowsMusicPlayer-TheUntamedMusicPlayer.git
synced 2026-05-06 11:10:16 +08:00
9 lines
200 B
C#
9 lines
200 B
C#
namespace The_Untamed_Music_Player.Contracts.Services;
|
|
|
|
public interface ILocalSettingsService
|
|
{
|
|
Task<T?> ReadSettingAsync<T>(string key);
|
|
|
|
Task SaveSettingAsync<T>(string key, T value);
|
|
}
|