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 IEntityWithAuditAndTenant : IEntityWithAudit, ITenant { } /// public class EntityWithAuditAndTenant : EntityWithAudit, IEntityWithAuditAndTenant { /// public Guid TenantId { get; set; } }