21 lines
438 B
C#
21 lines
438 B
C#
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;
|
|
}
|