123456789101112131415161718192021222324252627282930313233343536373839 |
- 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
- {
- /// <summary>
- /// 编号
- /// </summary>
- public int id { get; set; }
- /// <summary>
- /// 一级测量的名称(长度测量、多点线段、曲线长度、点垂线、平行线测量、多边形测量、圆形测量、角度测量)
- /// </summary>
- public string name { get; set; }
- public List<ChildLabel> childLabel;
- public class ChildLabel
- {
- /// <summary>
- /// 二级测量的名称
- /// </summary>
- public string name { get; set; }
- /// <summary>
- /// 二级测量对应的枚举
- /// </summary>
- public DrawToolType drawToolType { get; set; }
- /// <summary>
- /// 二级测量对应的设置的内部类的类型
- /// </summary>
- public Type type { get; set; }
- }
- }
- }
|