using System.Collections.Generic; using Core.Common.Utils.Aop; using Core.Common.Utils.Collections.Generic; namespace Core.Common.Base.Tests.TestObjects { [Entity] public class Child { public Child() { Children = new EventedList(); } public string Name { get; set; } public IList Children { get; set; } } }