jellyfin/MediaBrowser.Model/Configuration/SendToUserType.cs
2014-05-08 16:26:20 -04:00

9 lines
145 B
C#

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