JobDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Represents a job for data transfer.
public class JobDto
Properties
Id
Gets or sets the job id
public string Id { get; set; }
Property Value
CreatedAt
Datetime of job creation
public Nullable<DateTime> CreatedAt { get; set; }
Property Value
StateChangedAt
Datetime of last state change
public Nullable<DateTime> StateChangedAt { get; set; }
Property Value
Status
Current status
public string Status { get; set; }
Property Value
Reason
Reason of current state
public string Reason { get; set; }
Property Value
Constructors
JobDto()
public JobDto()