19 lines
483 B
C#
19 lines
483 B
C#
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|