RobotNet/RobotNet.RobotShares/VDA5050/Factsheet/Envelopes3d.cs
2025-10-15 15:15:53 +07:00

17 lines
370 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotNet.RobotShares.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; }
}