2
0

AuthenticateUserByName.cs 392 B

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