Files
ECMJobRunner/ECM.JobRunner.Common/JobStatus/StatusItem.vb
Jonathan Jenne 248be23804 06-12-2022
2022-12-06 14:08:20 +01:00

15 lines
411 B
VB.net

Public Class StatusItem
Public Const PROGRESS_CURRENT = "__Progress_Current"
Public Const PROGRESS_TOTAL = "__Progress_Total"
Public Id As String
Public Name As String
Public ExecutionTime As TimeSpan
Public ProgressCurrent As Integer
Public ProgressTotal As Integer
Public Executing As Boolean = False
Public StartTime As Date
Public CompleteTime As Date
End Class