blob: 55907e6c84fe787a9f0cde2efa912ef693279f2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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
}
}
|