RobotApp/RobotApp.VDA5050/Factsheet/Envelopes2d.cs
Đăng Nguyễn cf309cccba Init project
2025-09-10 10:48:39 +07:00

22 lines
431 B
C#

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