Files
SilkierQuartz/sample/AspNetCore31/AppSettings.cs
2020-06-06 08:42:41 +08:00

14 lines
273 B
C#

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