1
0
mirror of https://github.com/nsnail/FreeSql.git synced 2025-04-27 13:12:51 +08:00
2022-09-06 17:00:31 +08:00

17 lines
523 B
C#

using System;
using System.Collections.Generic;
namespace FreeSql.Internal.Model
{
public class AggregateRootTrackingChangeInfo
{
public List<NativeTuple<Type, object>> InsertLog { get; } = new List<NativeTuple<Type, object>>();
public List<NativeTuple<Type, object, object, List<string>>> UpdateLog { get; } = new List<NativeTuple<Type, object, object, List<string>>>();
public List<NativeTuple<Type, object[]>> DeleteLog { get; } = new List<NativeTuple<Type, object[]>>();
}
}