18 lines
360 B
C#
18 lines
360 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CMS_CORE_Library.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;
|
|
}
|
|
} |