ForgotPasswordResult.cs 689 B

123456789101112131415161718192021222324252627
  1. #pragma warning disable CS1591
  2. using System;
  3. namespace MediaBrowser.Model.Users
  4. {
  5. public class ForgotPasswordResult
  6. {
  7. /// <summary>
  8. /// Gets or sets the action.
  9. /// </summary>
  10. /// <value>The action.</value>
  11. public ForgotPasswordAction Action { get; set; }
  12. /// <summary>
  13. /// Gets or sets the pin file.
  14. /// </summary>
  15. /// <value>The pin file.</value>
  16. public string PinFile { get; set; }
  17. /// <summary>
  18. /// Gets or sets the pin expiration date.
  19. /// </summary>
  20. /// <value>The pin expiration date.</value>
  21. public DateTime? PinExpirationDate { get; set; }
  22. }
  23. }