mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			426 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			426 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.System;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// The cast receiver application model.
 | 
						|
/// </summary>
 | 
						|
public class CastReceiverApplication
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the cast receiver application id.
 | 
						|
    /// </summary>
 | 
						|
    public required string Id { get; set; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the cast receiver application name.
 | 
						|
    /// </summary>
 | 
						|
    public required string Name { get; set; }
 | 
						|
}
 |