AuthenticateUserByName.cs 227 B

123456789
  1. namespace Jellyfin.Api.Models.UserDtos
  2. {
  3. public class AuthenticateUserByName
  4. {
  5. public string Username { get; set; }
  6. public string Pw { get; set; }
  7. public string Password { get; set; }
  8. }
  9. }