using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; // // This is here so CodeMaid doesn't reorganize this document // 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; } }