using System.Threading.Tasks; namespace Abp.Auditing { /// /// This interface should be implemented by vendors to /// make auditing working. /// Default implementation is . /// public interface IAuditingStore { /// /// Should save audits to a persistent store. /// /// Audit informations Task SaveAsync(AuditInfo auditInfo); } }