* Created AzureDataModel

* Created Hangfire API
This commit is contained in:
2025-02-12 20:29:10 +01:00
parent 6800781fdb
commit e7342abadd
16 changed files with 414 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace AzureDataModel.Dtos;
public class TaskSchedulerDto
{
public int Id { get; set; }
public string Name { get; set; }
public string Path { get; set; }
public string CronOptions { get; set; }
public DateTime CreateDate { get; set; }
}