AuthenticateUserByName.cs 596 B

1234567891011121314151617181920212223
  1. namespace Jellyfin.Api.Models.UserDtos
  2. {
  3. /// <summary>
  4. /// The authenticate user by name request body.
  5. /// </summary>
  6. public class AuthenticateUserByName
  7. {
  8. /// <summary>
  9. /// Gets or sets the username.
  10. /// </summary>
  11. public string? Username { get; set; }
  12. /// <summary>
  13. /// Gets or sets the plain text password.
  14. /// </summary>
  15. public string? Pw { get; set; }
  16. /// <summary>
  17. /// Gets or sets the sha1-hashed password.
  18. /// </summary>
  19. public string? Password { get; set; }
  20. }
  21. }