ChouBox/Utile/HuanMeng.DotNetCore/MultiTenant/Contract/ITenantInfo.cs
2025-04-23 19:20:23 +08:00

25 lines
486 B
C#

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