RobotApp/RobotApp.VDA5050/Factsheet/Envelopes3d.cs
Đăng Nguyễn cf309cccba Init project
2025-09-10 10:48:39 +07:00

17 lines
358 B
C#

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