zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Infrastructure/ConnectionStrings/IConnectionStringProvider.cs
2023-12-05 17:22:48 +08:00

7 lines
203 B
C#

namespace ZeroFramework.DeviceCenter.Infrastructure.ConnectionStrings
{
public interface IConnectionStringProvider
{
Task<string> GetAsync(string? connectionStringName = null);
}
}