zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Infrastructure/ConnectionStrings/IConnectionStringProvider.cs

7 lines
203 B
C#
Raw Permalink Normal View History

2023-12-05 09:22:48 +00:00
namespace ZeroFramework.DeviceCenter.Infrastructure.ConnectionStrings
{
public interface IConnectionStringProvider
{
Task<string> GetAsync(string? connectionStringName = null);
}
}