| 123456789101112131415 |
- #pragma warning disable CS1591
- using System;
- namespace MediaBrowser.Model.Users
- {
- public enum ForgotPasswordAction
- {
- [Obsolete("Returning different actions represents a security concern.")]
- ContactAdmin = 0,
- PinCode = 1,
- [Obsolete("Returning different actions represents a security concern.")]
- InNetworkRequired = 2
- }
- }
|