25 lines
486 B
C#
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; }
|
|
|
|
}
|
|
}
|