Files
Cleanuparr/code/Infrastructure/Models/JobInfo.cs
Flaminel 69788d55d2 #1
2025-05-14 22:42:52 +03:00

12 lines
378 B
C#

namespace 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;
}