16 lines
415 B
C#
16 lines
415 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
|
|
}
|
|
} |