namespace Abp.Domain.Entities.Auditing
{
///
/// This interface ads to for a fully audited entity.
///
public interface IFullAudited : IAudited, IDeletionAudited
{
}
///
/// Adds navigation properties to interface for user.
///
/// Type of the user
public interface IFullAudited : IAudited, IFullAudited, IDeletionAudited
where TUser : IEntity
{
}
}