SendToUserType.cs 178 B

1234567891011
  1. #pragma warning disable CS1591
  2. namespace MediaBrowser.Model.Notifications
  3. {
  4. public enum SendToUserType
  5. {
  6. All = 0,
  7. Admins = 1,
  8. Custom = 2
  9. }
  10. }