using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HuanMeng.DotNetCore.MultiTenant.Contract
{
///
/// 多租户DbContent接口
///
public interface IMultiTenantDbContext
{
///
/// 租户信息
///
ITenantInfo TenantInfo { get; }
}
}