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