namespace Prefab.Domain.Common; /// /// All entities that require tenant information should use this. Use /// /// /// The type that will represent the entity's ID field. public interface IEntityWithTenant : IEntity, ITenant { } /// public abstract class EntityWithTenant : Entity, IEntityWithTenant { /// public Guid TenantId { get; set; } }