RobotApp/RobotApp.VDA5050/Factsheet/Envelopes3d.cs
Đăng Nguyễn 0d97684f70 update
2025-09-15 17:39:02 +07:00

15 lines
419 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotApp.VDA5050.Factsheet;
public class Envelopes3d
{
[Required]
public string Set { get; set; } = string.Empty;
[Required]
public string Format { get; set; } = string.Empty;
public object Data { get; set; } = string.Empty;
public string Url { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
}