using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HuanMeng.DotNetCore.MultiTenant.Contract { /// /// 租户信息接口 /// public interface ITenantInfo : IMultiTenant { string? Identifier { get; set; } /// /// Gets or sets a display friendly name for the tenant. /// string? Name { get; set; } } }