mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			700 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			700 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#nullable disable
 | 
						|
#pragma warning disable CS1591
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Entities
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class ParentalRating.
 | 
						|
    /// </summary>
 | 
						|
    public class ParentalRating
 | 
						|
    {
 | 
						|
        public ParentalRating()
 | 
						|
        {
 | 
						|
        }
 | 
						|
 | 
						|
        public ParentalRating(string name, int value)
 | 
						|
        {
 | 
						|
            Name = name;
 | 
						|
            Value = value;
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the name.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The name.</value>
 | 
						|
        public string Name { get; set; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the value.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The value.</value>
 | 
						|
        public int Value { get; set; }
 | 
						|
    }
 | 
						|
}
 |