20 lines
387 B
C#
20 lines
387 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 IMultiTenant
|
|
{
|
|
/// <summary>
|
|
/// 租户ID
|
|
/// </summary>
|
|
Guid TenantId { get; set; }
|
|
}
|
|
}
|