22 lines
386 B
C#
22 lines
386 B
C#
// <copyright file="ChannelParentalRating.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
public enum ChannelParentalRating
|
|
{
|
|
GeneralAudience = 0,
|
|
|
|
UsPG = 1,
|
|
|
|
UsPG13 = 2,
|
|
|
|
UsR = 3,
|
|
|
|
Adult = 4
|
|
}
|
|
}
|