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; } }