using FreeSql; using FreeSql.Extensions.EntityUtil; using FreeSql.Internal; using FreeSql.Internal.CommonProvider; using FreeSql.Internal.Model; using System; using System.Collections; using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Text; namespace FreeSql.Internal.Model { public class AggregateRootTrackingChangeInfo { public List> InsertLog { get; } = new List>(); public List>> UpdateLog { get; } = new List>>(); public List> DeleteLog { get; } = new List>(); } }