17 lines
370 B
C#
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; }
|
|
}
|