Files
2025-06-18 21:58:48 +03:00

12 lines
389 B
C#

namespace Cleanuparr.Infrastructure.Models;
public class JobInfo
{
public string Name { get; set; } = string.Empty;
public string Status { get; set; } = string.Empty;
public string Schedule { get; set; } = string.Empty;
public DateTime? NextRunTime { get; set; }
public DateTime? PreviousRunTime { get; set; }
public string JobType { get; set; } = string.Empty;
}