This commit is contained in:
2020-05-23 19:21:19 +00:00
parent 541a7999ab
commit a56140b72f
3 changed files with 5 additions and 12 deletions

View File

@@ -98,6 +98,7 @@ namespace AyaNova.Biz
JobOperationsLogInfoItem o = new JobOperationsLogInfoItem(); JobOperationsLogInfoItem o = new JobOperationsLogInfoItem();
o.Created = i.Created; o.Created = i.Created;
o.StatusText = i.StatusText; o.StatusText = i.StatusText;
o.JobId = i.JobId;
ret.Add(o); ret.Add(o);
} }
return ret; return ret;

View File

@@ -7,18 +7,9 @@ namespace AyaNova.Models
/// </summary> /// </summary>
public class JobOperationsLogInfoItem public class JobOperationsLogInfoItem
{ {
/// <summary>
/// Date of log entry
/// </summary>
/// <returns>UTC date/time</returns>
public DateTime Created { get; set; } public DateTime Created { get; set; }
public string StatusText { get; set; }
/// <summary> public Guid JobId { get; set; }
/// Log text
/// </summary>
/// <returns>string</returns>
public string StatusText { get; set; }
} }

View File

@@ -1787,4 +1787,5 @@
"AvailableSpace":"Available space", "AvailableSpace":"Available space",
"OpsTestJob":"Submit test job" "OpsTestJob":"Submit test job"
} }