using System.Collections.Generic; namespace CMS_CORE_Library.Demo.Models { public class DemoFamilyModel { public int Id; public string Name; public List ChildTools; } public class DemoChildTool { public int Id; public int Type; public int ChildId; } }