26 lines
635 B
C#
26 lines
635 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static MP.Core.Objects.Enums;
|
|
|
|
namespace MP.Core.Objects
|
|
{
|
|
/// <summary>
|
|
/// Dati resoconto IOB
|
|
/// </summary>
|
|
public class IOB_data
|
|
{
|
|
#region Public Fields
|
|
|
|
public bool CNC_Counter { get; set; } = false;
|
|
public string IP { get; set; } = "::1";
|
|
public IobType iType { get; set; } = IobType.ND;
|
|
public string name { get; set; } = "ND";
|
|
public string typeCss { get; set; } = "fa fa-question-circle-o";
|
|
|
|
#endregion Public Fields
|
|
}
|
|
}
|