mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-21 12:23:10 +00:00
9 lines
199 B
C#
9 lines
199 B
C#
namespace TemplateStudioSampleApp.Contracts.Services;
|
|
|
|
public interface ILocalSettingsService
|
|
{
|
|
Task<T?> ReadSettingAsync<T>(string key);
|
|
|
|
Task SaveSettingAsync<T>(string key, T value);
|
|
}
|