using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HuanMeng.DotNetCore.MultiTenant.Contract { /// /// 基本多租户接口 /// public interface IMultiTenant { /// /// 租户ID /// Guid TenantId { get; set; } } }