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