mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 18:44:23 +00:00
16 lines
416 B
C#
16 lines
416 B
C#
using System;
|
|
|
|
namespace Oqtane.Models
|
|
{
|
|
public class ScheduleLog
|
|
{
|
|
public int ScheduleLogId { get; set; }
|
|
public int ScheduleId { get; set; }
|
|
public DateTime StartDate { get; set; }
|
|
public DateTime? FinishDate { get; set; }
|
|
public bool? Succeeded { get; set; }
|
|
public string Notes { get; set; }
|
|
public DateTime? NextExecution { get; set; }
|
|
}
|
|
}
|