Init project
This commit is contained in:
20
RobotApp.VDA5050/State/Map.cs
Normal file
20
RobotApp.VDA5050/State/Map.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace RobotApp.VDA5050.State;
|
||||
|
||||
public enum MapStatus
|
||||
{
|
||||
Enabled,
|
||||
Disabled,
|
||||
}
|
||||
|
||||
public class Map
|
||||
{
|
||||
[Required]
|
||||
public string MapId { get; set; } = string.Empty;
|
||||
[Required]
|
||||
public string MapVersion { get; set; } = string.Empty;
|
||||
public string MapDescription { get; set; } = string.Empty;
|
||||
[Required]
|
||||
public string MapStatus { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user