1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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
- {
- /// <summary>
- /// 描述一级标注和二级标注的关系
- /// </summary>
- public class CameraRelationModel
- {
- public CameraRelationModel() {
-
- }
- public CameraRelationModel(int id , string name , CameraParamType cpt)
- {
- this.id = id;
- this.name = name;
- this.cameraParamType = cpt;
- }
- /// <summary>
- /// 编号
- /// </summary>
- public int id;
- /// <summary>
- /// 一级标注的名称(文本、标记、直线、曲线、箭头、圆、多边形)
- /// </summary>
- public string name;
-
-
- /// 二级标注对应的枚举
- /// </summary>
- public CameraParamType cameraParamType;
-
- }
- }
|