mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
Fixed: Replaced trakt with tvdb as data source
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
namespace TVDBSharp.Models.Enums
|
||||
{
|
||||
/// <summary>
|
||||
/// Different content ratings. View <c>http://en.wikipedia.org/wiki/TV_Parental_Guidelines</c> for more info.
|
||||
/// </summary>
|
||||
public enum ContentRating
|
||||
{
|
||||
/// <summary>
|
||||
/// Not suitable for children under 14.
|
||||
/// </summary>
|
||||
TV14,
|
||||
|
||||
/// <summary>
|
||||
/// This program contains material that parents may find unsuitable for younger children.
|
||||
/// </summary>
|
||||
TVPG,
|
||||
|
||||
/// <summary>
|
||||
/// This program is designed to be appropriate for all children.
|
||||
/// </summary>
|
||||
TVY,
|
||||
|
||||
/// <summary>
|
||||
/// This program is designed for children age 7 and above.
|
||||
/// </summary>
|
||||
TVY7,
|
||||
|
||||
/// <summary>
|
||||
/// Most parents would find this program suitable for all ages.
|
||||
/// </summary>
|
||||
TVG,
|
||||
|
||||
/// <summary>
|
||||
/// This program is specifically designed to be viewed by adults and therefore may be unsuitable for children under 17.
|
||||
/// </summary>
|
||||
TVMA,
|
||||
|
||||
/// <summary>
|
||||
/// Default value if no rating is given.
|
||||
/// </summary>
|
||||
Unknown
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user