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

15 lines
371 B
C#

using System.Diagnostics.CodeAnalysis;
namespace ZeroFramework.DeviceCenter.Infrastructure.ConnectionStrings
{
[Serializable]
public class TenantConfiguration
{
public Guid TenantId { get; set; }
[AllowNull]
public string TenantName { get; set; }
public Dictionary<string, string>? ConnectionStrings { get; set; }
}
}