aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Notifications/SendToUserType.cs
blob: 07b1ac01825f14bc2fb970bd1de813c9d50ef94f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma warning disable CS1591
#pragma warning disable SA1600

namespace MediaBrowser.Model.Notifications
{
    public enum SendToUserType
    {
        All = 0,
        Admins = 1,
        Custom = 2
    }
}