Files

19 lines
483 B
C#
Raw Permalink Normal View History

using System;
namespace MainShell.ProcessResult
{
public class AutoProductionRuntimeState : ProcessResultBase
{
public int CurrentSubstratePendingCount { get; set; }
public int CurrentSubstrateProcessedCount { get; set; }
public int CurrentChipRemainingCount { get; set; }
public bool TransferNeedsRecheck { get; set; }
public bool TransferChipExhausted { get; set; }
public DateTime LastUpdatedTime { get; set; }
}
}