15 lines
377 B
C#
15 lines
377 B
C#
using GerstITS.Job.Scheduling;
|
|
|
|
namespace GerstITS.Examples.Jobs.SayHelloWorld.Configurations;
|
|
|
|
public class SayHelloWorldJobConfiguration : JobSchedulingConfigurationBase
|
|
{
|
|
#region Constructors
|
|
|
|
public SayHelloWorldJobConfiguration(Microsoft.Extensions.Configuration.IConfiguration configuration)
|
|
: base(configuration)
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
} |