using System; namespace VCommon.VEntity { public interface IMayHaveTenant { Guid? TenantId { get; set; } } }