You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.3 KiB
C#

2 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.lmm.Collection.Model.TestAndInspection.InspectedPanel
* 3A6554C0-80EB-49E2-86FD-6598F50E1452
*
* WenJY
*
* 2025-10-22 16:46:13
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace Sln.Iot.Model.api.TestAndInspection.InspectedPanel
{
/// <summary>
/// 区域信息
/// </summary>
public class Region
{
/// <summary>
/// 区域起点X坐标
/// </summary>
public double? StartPointX { get; set; }
/// <summary>
/// 区域起点Y坐标
/// </summary>
public double? StartPointY { get; set; }
/// <summary>
/// 对于 X,Y軸的描述
/// </summary>
public List<Segment> RegionSegments { get; set; } = new List<Segment>();
}
}