aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/SendToUserType.cs
blob: a2eac4c2d9e34afe8ac045a7135d1b5302292b9d (plain)
1
2
3
4
5
6
7
8
9
namespace MediaBrowser.Model.Configuration
{
    public enum SendToUserType
    {
        All = 0,
        Admins = 1,
        Custom = 2
    }
}