21 lines
540 B
C#
21 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.MONO.Core.CONF
|
|
{
|
|
public class MachineStatus
|
|
{
|
|
public int MStatusID { get; set; } = 0;
|
|
public string Description { get; set; } = "";
|
|
public string Css { get; set; } = "";
|
|
public int Priority { get; set; } = 1;
|
|
public string Group { get; set; } = "";
|
|
}
|
|
}
|