* Maintain FaKrosno api to handle Hangfire
* Added checking of missing EdiCo based on EdiCoTranslate and send email every 30 minutes * Added Admin Scheduler view
This commit is contained in:
13
OrdersManagementDataModel/Entities/TaskScheduler.cs
Normal file
13
OrdersManagementDataModel/Entities/TaskScheduler.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace OrdersManagementDataModel.Entities;
|
||||
|
||||
public class TaskScheduler
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public Guid RowPointer { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Path { get; set; }
|
||||
public string CronOptions { get; set; }
|
||||
public DateTime CreateDate { get; set; }
|
||||
public DateTime ActiveFrom { get; set; }
|
||||
public DateTime? ActiveUntil { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user