You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
597 B
21 lines
597 B
6 years ago
|
using System;
|
||
|
using System.Threading.Tasks;
|
||
|
using MediaBrowser.Controller.Entities;
|
||
|
using MediaBrowser.Model.Users;
|
||
|
|
||
|
namespace MediaBrowser.Controller.Authentication
|
||
|
{
|
||
|
public interface IPasswordResetProvider
|
||
|
{
|
||
|
string Name { get; }
|
||
|
bool IsEnabled { get; }
|
||
|
Task<ForgotPasswordResult> StartForgotPasswordProcess(User user, bool isInNetwork);
|
||
|
Task<PinRedeemResult> RedeemPasswordResetPin(string pin);
|
||
|
}
|
||
|
public class PasswordPinCreationResult
|
||
|
{
|
||
|
public string PinFile { get; set; }
|
||
|
public DateTime ExpirationDate { get; set; }
|
||
|
}
|
||
|
}
|