13 lines
		
	
	
		
			270 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			270 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace StellaOps.Concelier.Core.Jobs;
 | |
| 
 | |
| public sealed record JobDefinition(
 | |
|     string Kind,
 | |
|     Type JobType,
 | |
|     TimeSpan Timeout,
 | |
|     TimeSpan LeaseDuration,
 | |
|     string? CronExpression,
 | |
|     bool Enabled)
 | |
| {
 | |
|     public string LeaseKey => $"job:{Kind}";
 | |
| }
 |