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