20 lines
488 B
C#
20 lines
488 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 MachineMode
|
|
{
|
|
public int MModeID { get; set; } = 0;
|
|
public string Description { get; set; } = "";
|
|
public string Css { get; set; } = "";
|
|
public int Priority { get; set; } = 1;
|
|
}
|
|
}
|