mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-05 08:46:35 +08:00
11 lines
280 B
C#
11 lines
280 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
using Volo.Abp.Auditing;
|
|||
|
|
using Yi.Framework.AuditLogging.Domain.Entities;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.AuditLogging.Domain;
|
|||
|
|
|
|||
|
|
public interface IAuditLogInfoToAuditLogConverter
|
|||
|
|
{
|
|||
|
|
Task<AuditLogAggregateRoot> ConvertAsync(AuditLogInfo auditLogInfo);
|
|||
|
|
}
|