mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 18:14:22 +00:00
17 lines
386 B
C#
17 lines
386 B
C#
using System;
|
|
|
|
namespace Oqtane.Models
|
|
{
|
|
public class JobLog
|
|
{
|
|
public int JobLogId { get; set; }
|
|
public int JobId { get; set; }
|
|
public DateTime StartDate { get; set; }
|
|
public DateTime? FinishDate { get; set; }
|
|
public bool? Succeeded { get; set; }
|
|
public string Notes { get; set; }
|
|
|
|
public Job Job { get; set; }
|
|
}
|
|
}
|