using PaintDotNet.Annotation.Enum;
using PaintDotNet.Base.SettingModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PaintDotNet.Annotation.relationModel
{
///
/// 描述一级标注和二级标注的关系
///
public class LabelRelationModel
{
///
/// 编号
///
public int id;
///
/// 一级标注的名称(文本、标记、直线、曲线、箭头、圆、多边形)
///
public string name;
public List childLabel;
public class ChildLabel
{
///
/// 二级标注的名称
///
public string name;
///
/// 二级标注对应的枚举
///
public DrawToolType drawToolType;
///
/// 二级标注对应的设置的内部类的类型
///
public Type type;
}
}
}