Files
meezi/src/Meezi.Core/Interfaces/IPlatformRuntimeConfig.cs
T

9 lines
319 B
C#
Raw Normal View History

2026-05-27 21:33:48 +03:30
namespace Meezi.Core.Interfaces;
public interface IPlatformRuntimeConfig
{
Task<string?> GetAsync(string key, CancellationToken cancellationToken = default);
Task<IReadOnlyDictionary<string, string>> GetByPrefixAsync(string prefix, CancellationToken cancellationToken = default);
void InvalidateCache();
}