mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 18:50:23 +01:00
10 lines
166 B
C#
10 lines
166 B
C#
|
|
namespace MediaBrowser.Model.Users
|
|
{
|
|
public enum ForgotPasswordAction
|
|
{
|
|
ContactAdmin = 0,
|
|
PinCode = 1,
|
|
InNetworkRequired = 2
|
|
}
|
|
}
|