This commit is contained in:
40
server/models/dto/JobOperationsFetchInfo.cs
Normal file
40
server/models/dto/JobOperationsFetchInfo.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user