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; }
}
}