Files
annotations/Azaion.Common/Services/IConfigurationStore.cs
T

11 lines
243 B
C#

using Azaion.Common.DTO.Config;
namespace Azaion.Common.Services;
public interface IConfigurationStore
{
Task<AppConfig> LoadAsync(CancellationToken ct = default);
Task SaveAsync(AppConfig config, CancellationToken ct = default);
}