mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-31 14:16:37 +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);
|
|
}
|