namespace MediaBrowser.Controller.Channels
{
///
/// The parental rating of a channel.
///
public enum ChannelParentalRating
{
///
/// Suitable for a general audience.
///
GeneralAudience = 0,
///
/// Parental guidance suggested (US PG).
///
UsPG = 1,
///
/// Parents strongly cautioned (US PG-13).
///
UsPG13 = 2,
///
/// Restricted (US R).
///
UsR = 3,
///
/// Suitable for adults only.
///
Adult = 4
}
}