17 lines
380 B
C#
17 lines
380 B
C#
using GerstITS.Job.Scheduling;
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace GerstITS.Examples.JobDashboard.Configurations;
|
|
|
|
public sealed class ReportGenerationJobConfiguration : JobSchedulingConfigurationBase
|
|
{
|
|
#region Constructors
|
|
|
|
public ReportGenerationJobConfiguration(IConfiguration configuration)
|
|
: base(configuration)
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
}
|