22 lines
462 B
C#
22 lines
462 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Teigha.Geometry;
|
|
|
|
namespace SWS.CAD.Base
|
|
{
|
|
public class DtoMText
|
|
{
|
|
/// <summary>
|
|
/// 文本内容,多行文本用\n 进行换行
|
|
/// </summary>
|
|
public string Text { get; set; }
|
|
/// <summary>
|
|
/// 句柄Id
|
|
/// </summary>
|
|
public string HandId { get; set; }
|
|
}
|
|
}
|