27 lines
497 B
C#
27 lines
497 B
C#
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; }
|
|
|
|
}
|
|
|
|
}
|