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