2
0

ForgotPasswordAction.cs 374 B

123456789101112131415
  1. #pragma warning disable CS1591
  2. using System;
  3. namespace MediaBrowser.Model.Users
  4. {
  5. public enum ForgotPasswordAction
  6. {
  7. [Obsolete("Returning different actions represents a security concern.")]
  8. ContactAdmin = 0,
  9. PinCode = 1,
  10. [Obsolete("Returning different actions represents a security concern.")]
  11. InNetworkRequired = 2
  12. }
  13. }