29 lines
624 B
C#
29 lines
624 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOB_MAN
|
|
{
|
|
public class iobAdapt
|
|
{
|
|
/// <summary>
|
|
/// Codice univoco macchina
|
|
/// </summary>
|
|
public string CodIOB { get; set; }
|
|
/// <summary>
|
|
/// Identificativo univoco processo
|
|
/// </summary>
|
|
public int pID { get; set; }
|
|
/// <summary>
|
|
/// DataOra avvio dell'IOB
|
|
/// </summary>
|
|
public DateTime startTime { get; set; }
|
|
/// <summary>
|
|
/// Verifica se il processo sia in RUN
|
|
/// </summary>
|
|
public bool isRunning { get; set; }
|
|
}
|
|
}
|