Files
cms-core-active/CMS_CORE_Library/Demo/Models/FamilyModel.cs
T
2018-04-24 16:37:04 +00:00

18 lines
352 B
C#

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