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