jellyfin/MediaBrowser.Controller/Session/AuthenticationRequest.cs

31 lines
640 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Session
{
public class AuthenticationRequest
{
public string Username { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public Guid UserId { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string Password { get; set; }
2020-06-15 17:43:52 -04:00
2021-04-22 08:49:54 -04:00
[Obsolete("Send full password in Password field")]
2018-12-27 18:27:57 -05:00
public string PasswordSha1 { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string App { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string AppVersion { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string DeviceId { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string DeviceName { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string RemoteEndPoint { get; set; }
}
}