aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Users/ForgotPasswordResult.cs
blob: 2f9b4cf48a1c09e39272715728a9accdfed3f9d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;

namespace MediaBrowser.Model.Users
{
    public class ForgotPasswordResult
    {
        /// <summary>
        /// Gets or sets the action.
        /// </summary>
        /// <value>The action.</value>
        public ForgotPasswordAction Action { get; set; }
        /// <summary>
        /// Gets or sets the pin file.
        /// </summary>
        /// <value>The pin file.</value>
        public string PinFile { get; set; }
        /// <summary>
        /// Gets or sets the pin expiration date.
        /// </summary>
        /// <value>The pin expiration date.</value>
        public DateTime? PinExpirationDate { get; set; }
    }
}