SendToUserType.cs 146 B

123456789
  1. namespace MediaBrowser.Model.Notifications
  2. {
  3. public enum SendToUserType
  4. {
  5. All = 0,
  6. Admins = 1,
  7. Custom = 2
  8. }
  9. }