mirror of
https://github.com/fergalmoran/SilkierQuartz.git
synced 2025-12-22 09:37:56 +00:00
14 lines
282 B
C#
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; }
|
|
}
|
|
}
|