using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SWS.CAD.Models { /// /// 已打开编辑的图纸信息 /// public class DrawingOpened { /// /// 图纸ID /// public string Id { get; set; } /// /// 图纸路径 /// public string Path { get; set; } /// /// 是否只读 /// public bool IsReadOnly { get; set; } } }