ForgotPasswordResult.cs 655 B

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