namespace Abp.Auditing
{
///
/// Provides an interface to provide audit informations in the upper layers.
///
public interface IAuditInfoProvider
{
///
/// Called to fill needed properties.
///
/// Audit info that is partially filled
void Fill(AuditInfo auditInfo);
}
}