Files
test_demo/MX-PD-盘古 - new/PanGu.DieBonderApp/MainShell/ProcessResult/AutoProductionRuntimeState.cs

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