Files
Lucio Maranta e14a8cc30e Refactor models
2018-09-27 16:00:05 +00:00

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;
}
}