using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CollaborativePlatformMain.DFEntity.MessageSubUtil
{
///
///
/// 文件名(File Name): ThreeModelEntity.cs
///
/// 描述(Description): 三维数据
///
/// 数据表(Tables): nothing
///
/// 作者(Author): Ou Rui Song
///
/// 日期(Create Date): 2024年4月28日17:35:46
///
/// 修改记录(Revision History):
/// R1:
/// 修改作者:
/// 修改日期:
/// 修改理由:
///
///
public class ThreeModelEntity
{
///
/// 子级数据
///
///
public ThreeModelEntity(string node)
{
Node = node;
}
///
/// 父级数据
///
///
///
public ThreeModelEntity(string node, List subDatas) : this(node)
{
SubDatas = subDatas;
}
///
/// 内容
///
public string Node { get; set; }
///
/// 子级数据
///
public List SubDatas { get; set; } = new List();
}
}