jellyfin/MediaBrowser.Model/Notifications/SendToUserType.cs
2019-01-13 20:31:15 +01:00

10 lines
146 B
C#

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