Init project
This commit is contained in:
19
RobotApp.VDA5050/Factsheet/OptionalParameters.cs
Normal file
19
RobotApp.VDA5050/Factsheet/OptionalParameters.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace RobotApp.VDA5050.Factsheet;
|
||||
|
||||
#nullable disable
|
||||
|
||||
public enum Support
|
||||
{
|
||||
SUPPORTED,
|
||||
REQUIRED,
|
||||
}
|
||||
public class OptionalParameters
|
||||
{
|
||||
[Required]
|
||||
public string Parameter { get; set; }
|
||||
[Required]
|
||||
public string Support { get; set; }
|
||||
public string Description { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user