mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			266 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			266 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #nullable disable
 | |
| #pragma warning disable CS1591
 | |
| 
 | |
| namespace MediaBrowser.Model.Session
 | |
| {
 | |
|     public class MessageCommand
 | |
|     {
 | |
|         public string Header { get; set; }
 | |
| 
 | |
|         public string Text { get; set; }
 | |
| 
 | |
|         public long? TimeoutMs { get; set; }
 | |
|     }
 | |
| }
 |