29 lines
576 B
C#
29 lines
576 B
C#
using HZY.Framework.DependencyInjection;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CloudGaming.Code.DataBaseModel;
|
|
|
|
/// <summary>
|
|
/// 租户类
|
|
/// </summary>
|
|
public class AppConfigTenant : ISingletonSelfDependency
|
|
{
|
|
public string Name { get; set; }
|
|
public AppConfigTenant()
|
|
{
|
|
if (Tenants == null)
|
|
{
|
|
Tenants = new List<AppConfig>();
|
|
}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<AppConfig> Tenants { get; set; }
|
|
}
|