mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-04 08:40:52 +08:00
14 lines
236 B
C#
14 lines
236 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Model.Base
|
|
{
|
|
public interface IMultiTenant
|
|
{
|
|
Guid? TenantId { get; }
|
|
}
|
|
}
|