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.

25 lines
716 B
C#

using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZKLT.Quartz.Model
{
public class QZ_JobConfig
{
private string _Id;
private string _TaskId;
private string _Key;
private string? _Value;
private string? _Group;
public string Id { get => _Id; set => _Id = value; }
public string TaskId { get => _TaskId; set => _TaskId = value; }
public string Key { get => _Key; set => _Key = value; }
public string? Value { get => _Value; set => _Value = value; }
public string? Group { get => _Group; set => _Group = value; }
}
}