This commit is contained in:
2881099
2022-09-06 17:00:31 +08:00
parent 9eab104259
commit 090abfd36a
48 changed files with 1919 additions and 29 deletions

View File

@ -0,0 +1,17 @@
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[]>>();
}
}