Init project
This commit is contained in:
16
RobotApp.VDA5050/Factsheet/Envelopes3d.cs
Normal file
16
RobotApp.VDA5050/Factsheet/Envelopes3d.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace RobotApp.VDA5050.Factsheet;
|
||||
|
||||
#nullable disable
|
||||
|
||||
public class Envelopes3d
|
||||
{
|
||||
[Required]
|
||||
public string Set { get; set; }
|
||||
[Required]
|
||||
public string Format { get; set; }
|
||||
public object Data { get; set; }
|
||||
public string Url { get; set; }
|
||||
public string Description { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user