You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			12 lines
		
	
	
		
			314 B
		
	
	
	
		
			C#
		
	
			
		
		
	
	
			12 lines
		
	
	
		
			314 B
		
	
	
	
		
			C#
		
	
| using NPin.Framework.AuditLogging.Domain.Entities;
 | |
| using Volo.Abp.Auditing;
 | |
| 
 | |
| namespace NPin.Framework.AuditLogging.Domain;
 | |
| 
 | |
| /// <summary>
 | |
| /// 审计日志转换器接口
 | |
| /// </summary>
 | |
| public interface IAuditLogInfoToAuditLogConverter
 | |
| {
 | |
|     Task<AuditLogAggregateRoot> ConvertAsync(AuditLogInfo auditLogInfo);
 | |
| } |