mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			273 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			273 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Model.LiveTv;
 | |
| using System;
 | |
| 
 | |
| namespace MediaBrowser.Controller.LiveTv
 | |
| {
 | |
|     public class RecordingStatusChangedEventArgs : EventArgs
 | |
|     {
 | |
|         public string RecordingId { get; set; }
 | |
| 
 | |
|         public RecordingStatus NewStatus { get; set; }
 | |
|     }
 | |
| }
 |