mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 02:24:22 +00:00
24 lines
744 B
C#
24 lines
744 B
C#
using System;
|
|
|
|
namespace Oqtane.Models
|
|
{
|
|
public class Schedule : IAuditable
|
|
{
|
|
public int ScheduleId { get; set; }
|
|
public string Name { get; set; }
|
|
public string JobType { get; set; }
|
|
public int Period { get; set; }
|
|
public string Frequency { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public bool IsExecuting { get; set; }
|
|
public DateTime? NextExecution { get; set; }
|
|
public int RetentionHistory { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
public DateTime CreatedOn { get; set; }
|
|
public string ModifiedBy { get; set; }
|
|
public DateTime ModifiedOn { get; set; }
|
|
}
|
|
}
|