#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Model.Entities
{
    /// 
    /// Class ParentalRating.
    /// 
    public class ParentalRating
    {
        public ParentalRating()
        {
        }
        public ParentalRating(string name, int? value)
        {
            Name = name;
            Value = value;
        }
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string Name { get; set; }
        /// 
        /// Gets or sets the value.
        /// 
        /// The value.
        public int? Value { get; set; }
    }
}