| 1234567891011121314151617181920 |
- namespace Abp.Domain.Entities.Auditing
- {
- /// <summary>
- /// This interface ads <see cref="IDeletionAudited"/> to <see cref="IAudited"/> for a fully audited entity.
- /// </summary>
- public interface IFullAudited : IAudited, IDeletionAudited
- {
-
- }
- /// <summary>
- /// Adds navigation properties to <see cref="IFullAudited"/> interface for user.
- /// </summary>
- /// <typeparam name="TUser">Type of the user</typeparam>
- public interface IFullAudited<TUser> : IAudited<TUser>, IFullAudited, IDeletionAudited<TUser>
- where TUser : IEntity<long>
- {
- }
- }
|