using ProtoBuf; namespace MediaBrowser.Model.Entities { /// /// Class ParentalRating /// [ProtoContract] public class ParentalRating { /// /// Gets or sets the name. /// /// The name. [ProtoMember(1)] public string Name { get; set; } /// /// Gets or sets the value. /// /// The value. [ProtoMember(2)] public int Value { get; set; } } }