jellyfin-server/MediaBrowser.Controller/Channels/ChannelParentalRating.cs
2019-01-13 20:30:58 +01:00

16 lines
206 B
C#

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