docker files fixes from liaqat
This commit is contained in:
13
src/Managing.Domain/Workers/Worker.cs
Normal file
13
src/Managing.Domain/Workers/Worker.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using static Managing.Common.Enums;
|
||||
|
||||
namespace Managing.Domain.Workers;
|
||||
|
||||
public class Worker
|
||||
{
|
||||
public WorkerType WorkerType { get; set; }
|
||||
public DateTime StartTime { get; set; }
|
||||
public DateTime? LastRunTime { get; set; }
|
||||
public int ExecutionCount { get; set; }
|
||||
public TimeSpan Delay { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user