aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Authentication/IPasswordResetProvider.cs
blob: 2639960e766ddbdc2fa176d7818eb68a1a8b7d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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; }
    }
}