namespace Abp.Domain.Entities.Auditing { /// /// This interface is implemented by entities which must be audited. /// Related properties automatically set when saving/updating objects. /// public interface IAudited : ICreationAudited, IModificationAudited { } /// /// Adds navigation properties to interface for user. /// /// Type of the user public interface IAudited : IAudited, ICreationAudited, IModificationAudited where TUser : IEntity { } }