mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 06:46:30 +00:00
11 lines
243 B
C#
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);
|
|
}
|
|
|