You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DSWMS/Quartz.NetUI/Quartz.NET.Web/Models/TaskLog.cs

15 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Quartz.NET.Web.Models
{
public class TaskLog
{
public string BeginDate { get; set; }
public string EndDate { get; set; }
public string Msg { get; set; }
}
}