namespace Prefab.Domain.Common; /// /// All entities that require auditing, statuses and tenant information should use this. /// /// The type that will represent the entity's ID field. public interface IEntityWithAuditAndStatusAndTenant : IEntityWithAuditAndStatus, ITenant { } /// public abstract class EntityWithAuditAndStatusAndTenant : EntityWithAuditAndStatus, IEntityWithAuditAndStatusAndTenant { /// public Guid TenantId { get; set; } }