jellyfin/MediaBrowser.Controller/Channels/ChannelParentalRating.cs

16 lines
203 B
C#

namespace MediaBrowser.Controller.Channels
{
public enum ChannelParentalRating
{
GeneralAudience = 0,
UsPG = 1,
UsPG13 = 2,
UsR = 3,
Adult = 4
}
}