using Sockeye.Biz;
using System;
namespace Sockeye.Models
{
///
/// Job info fetch data
///
public class JobOperationsFetchInfo
{
///
/// Identity of the job
///
/// id value of job, can be used to fetch logs
public Guid GId { get; set; }
///
/// Date job was submitted
///
/// UTC date/time
public DateTime Created { get; set; }
///
/// Date of the most recent operation for this job
///
/// UTC date/time
public DateTime LastAction { get; set; }
///
/// Descriptive name of the job
///
/// string
public string Name { get; set; }
///
/// Status of the job
///
/// Job status as string
public string JobStatus { get; set; }
}
}