jellyfin/MediaBrowser.Model/Notifications/SendToUserType.cs

12 lines
178 B
C#

#pragma warning disable CS1591
namespace MediaBrowser.Model.Notifications
{
public enum SendToUserType
{
All = 0,
Admins = 1,
Custom = 2
}
}