7 lines
203 B
C#
7 lines
203 B
C#
|
namespace ZeroFramework.DeviceCenter.Infrastructure.ConnectionStrings
|
|||
|
{
|
|||
|
public interface IConnectionStringProvider
|
|||
|
{
|
|||
|
Task<string> GetAsync(string? connectionStringName = null);
|
|||
|
}
|
|||
|
}
|