Files
2022-03-09 20:01:07 +01:00

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;
}
}