This commit is contained in:
26
server/AyaNova/models/dto/JobOperationsLogInfoItem.cs
Normal file
26
server/AyaNova/models/dto/JobOperationsLogInfoItem.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using AyaNova.Biz;
|
||||
using System;
|
||||
|
||||
namespace AyaNova.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// Job log item
|
||||
/// </summary>
|
||||
public class JobOperationsLogInfoItem
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Date of log entry
|
||||
/// </summary>
|
||||
/// <returns>UTC date/time</returns>
|
||||
public DateTime Created { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Log text
|
||||
/// </summary>
|
||||
/// <returns>string</returns>
|
||||
public string StatusText { get; set; }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user