using System;
namespace Oqtane.Models
{
///
/// Log / Journal of s executed.
///
public class JobLog
{
///
/// Internal ID
///
public int JobLogId { get; set; }
///
/// Reference to the which was run
///
public int JobId { get; set; }
///
/// Timestamp when the started.
///
public DateTime StartDate { get; set; }
///
/// Timestamp when the ended.
///
public DateTime? FinishDate { get; set; }
///
/// Success information.
///
public bool? Succeeded { get; set; }
///
/// Additional protocol information that was left after the ran.
///
public string Notes { get; set; }
///
/// Reference to the Job.
///
///
/// It's not clear if this is always populated.
///
public Job Job { get; set; }
}
}