jellyfin/MediaBrowser.Model/Notifications/SendToUserType.cs

9 lines
145 B
C#
Raw Normal View History

2014-07-02 20:34:08 +02:00
namespace MediaBrowser.Model.Notifications
{
public enum SendToUserType
{
All = 0,
Admins = 1,
Custom = 2
}
}