using System;
namespace API.DTOs.Jobs;
public class JobDto
{
    /// 
    /// Job Id
    /// 
    public string Id { get; set; } = default!;
    /// 
    /// Human Readable title for the Job
    /// 
    public string Title { get; set; } = default!;
    /// 
    /// When the job was created
    /// 
    public DateTime? CreatedAt { get; set; }
    /// 
    /// Last time the job was run
    /// 
    public DateTime? LastExecution { get; set; }
    /// 
    /// When the job was created
    /// 
    public DateTime? CreatedAtUtc { get; set; }
    /// 
    /// Last time the job was run
    /// 
    public DateTime? LastExecutionUtc { get; set; }
    public string Cron { get; set; } = default!;
}