17 lines
382 B
C#
17 lines
382 B
C#
using GerstITS.Data;
|
|
|
|
namespace GerstITS.Examples.JobDashboard.Data;
|
|
|
|
public sealed class JobRunEntity : EntityBase<int>
|
|
{
|
|
#region Properties
|
|
|
|
public string JobName { get; set; }
|
|
public DateTimeOffset StartedAt { get; set; }
|
|
public long DurationMilliseconds { get; set; }
|
|
public bool Success { get; set; }
|
|
public string Error { get; set; }
|
|
|
|
#endregion
|
|
}
|