Files
SilkierQuartz/sample/AppSettings.cs
2020-06-06 09:30:19 +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; }
}
}