mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-26 15:38:04 -05:00
12 lines
389 B
C#
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;
|
|
}
|