14 lines
356 B
C#
14 lines
356 B
C#
|
|
using MainShell.Filewritable;
|
||
|
|
using MainShell.Process;
|
||
|
|
using MXJM.FileWritable;
|
||
|
|
using System;
|
||
|
|
|
||
|
|
namespace MainShell.ProcessResult
|
||
|
|
{
|
||
|
|
public class CurrentChipProcessState : ProcessResultBase
|
||
|
|
{
|
||
|
|
public CurrentChipLifecycleState State { get; set; } = CurrentChipLifecycleState.Empty;
|
||
|
|
|
||
|
|
public DateTime LastUpdatedTime { get; set; }
|
||
|
|
}
|
||
|
|
}
|