IFullAudited.cs 606 B

1234567891011121314151617181920
  1. namespace Abp.Domain.Entities.Auditing
  2. {
  3. /// <summary>
  4. /// This interface ads <see cref="IDeletionAudited"/> to <see cref="IAudited"/> for a fully audited entity.
  5. /// </summary>
  6. public interface IFullAudited : IAudited, IDeletionAudited
  7. {
  8. }
  9. /// <summary>
  10. /// Adds navigation properties to <see cref="IFullAudited"/> interface for user.
  11. /// </summary>
  12. /// <typeparam name="TUser">Type of the user</typeparam>
  13. public interface IFullAudited<TUser> : IAudited<TUser>, IFullAudited, IDeletionAudited<TUser>
  14. where TUser : IEntity<long>
  15. {
  16. }
  17. }