Files
maat/Maat.Core/CONF/JobConfigConf.cs
2024-10-25 19:03:13 +02:00

31 lines
780 B
C#

using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Maat.Core.Enums;
namespace Maat.Core.CONF
{
/// <summary>
/// Classe gestione configurazione dei job gestiti da MaatRunner
/// </summary>
public class JobConfigConf
{
#region Public Properties
/// <summary>
/// Area configurazione task MsSql (opzionale)
/// </summary>
public MsSqlConf? MsSqlJobs { get; set; } = null;
/// <summary>
/// Area configurazione task RestApi (opzionale)
/// </summary>
public RestApiConf? RestApiJobs { get; set; } = null;
#endregion Public Properties
}
}