ParentalRating.cs 713 B

12345678910111213141516171819202122232425262728293031323334
  1. #pragma warning disable CS1591
  2. #pragma warning disable SA1600
  3. namespace MediaBrowser.Model.Entities
  4. {
  5. /// <summary>
  6. /// Class ParentalRating
  7. /// </summary>
  8. public class ParentalRating
  9. {
  10. /// <summary>
  11. /// Gets or sets the name.
  12. /// </summary>
  13. /// <value>The name.</value>
  14. public string Name { get; set; }
  15. /// <summary>
  16. /// Gets or sets the value.
  17. /// </summary>
  18. /// <value>The value.</value>
  19. public int Value { get; set; }
  20. public ParentalRating()
  21. {
  22. }
  23. public ParentalRating(string name, int value)
  24. {
  25. Name = name;
  26. Value = value;
  27. }
  28. }
  29. }