Init project
This commit is contained in:
21
RobotApp.VDA5050/Factsheet/Envelopes2d.cs
Normal file
21
RobotApp.VDA5050/Factsheet/Envelopes2d.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user