using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PaintDotNet.Annotation.Enum;
namespace PaintDotNet.Annotation.relationModel
{
public class MeasureRelationModel
{
///
/// 编号
///
public int id { get; set; }
///
/// 一级测量的名称(长度测量、多点线段、曲线长度、点垂线、平行线测量、多边形测量、圆形测量、角度测量)
///
public string name { get; set; }
public List childLabel;
public class ChildLabel
{
///
/// 二级测量的名称
///
public string name { get; set; }
///
/// 二级测量对应的枚举
///
public DrawToolType drawToolType { get; set; }
///
/// 二级测量对应的设置的内部类的类型
///
public Type type { get; set; }
}
}
}