using Hangfire.Common; namespace FaKrosnoApi.Models; public class JobModel( string jobId, string cron, string path, DateTime? lastExecution, DateTime? nextExecution, Job jobDetails) { public string JobId { get; set; } = jobId; public string Cron { get; set; } = cron; public string Path { get; set; } = path; public DateTime? LastExecution { get; set; } = lastExecution; public DateTime? NextExecution { get; set; } = nextExecution; public Job JobDetails { get; set; } = jobDetails; }