You've already forked Sonarr
							
							
				mirror of
				https://github.com/Sonarr/Sonarr.git
				synced 2025-10-31 00:07:55 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			353 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			353 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using NzbDrone.Common.Messaging.Tracking;
 | |
| 
 | |
| namespace NzbDrone.Common.Messaging.Events
 | |
| {
 | |
|     public class CommandCompletedEvent : IEvent
 | |
|     {
 | |
|         public TrackedCommand TrackedCommand { get; private set; }
 | |
| 
 | |
|         public CommandCompletedEvent(TrackedCommand trackedCommand)
 | |
|         {
 | |
|             TrackedCommand = trackedCommand;
 | |
|         }
 | |
|     }
 | |
| } |