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-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Session
{
public class AuthenticationRequest
{
public string Username { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public Guid UserId { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string Password { get; set; }
2020-06-15 23:43:52 +02:00
2021-04-22 14:49:54 +02:00
[Obsolete("Send full password in Password field")]
2018-12-28 00:27:57 +01:00
public string PasswordSha1 { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string App { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string AppVersion { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string DeviceId { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string DeviceName { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string RemoteEndPoint { get; set; }
}
}