Files
SilkierQuartz/sample/AppSettings.cs
2020-06-08 19:15:39 +08:00

14 lines
282 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SilkierQuartz.Example
{
public class AppSettings
{
public bool EnableHelloJob { get; set; }
public bool EnableHelloSingleJob { get; set; }
}
}