RobotApp/RobotApp.VDA5050/Factsheet/Envelopes2d.cs
Đăng Nguyễn 0d97684f70 update
2025-09-15 17:39:02 +07:00

20 lines
450 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotApp.VDA5050.Factsheet;
public class PolygonPoints
{
[Required]
public double X { get; set; }
[Required]
public double Y { get; set; }
}
public class Envelopes2d
{
[Required]
public string Set { get; set; } = string.Empty;
[Required]
public PolygonPoints[] PolygonPoints { get; set; } = [];
public string Description { get; set; } = string.Empty;
}