jellyfin/MediaBrowser.Controller/Authentication/AuthenticationResult.cs

21 lines
415 B
C#
Raw Normal View History

#nullable disable
2019-12-10 18:13:57 -05:00
#pragma warning disable CS1591
using MediaBrowser.Controller.Session;
2018-12-27 18:27:57 -05:00
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Controller.Authentication
{
public class AuthenticationResult
{
public UserDto User { get; set; }
2019-12-10 18:13:57 -05:00
2018-12-27 18:27:57 -05:00
public SessionInfo SessionInfo { get; set; }
2019-12-10 18:13:57 -05:00
2018-12-27 18:27:57 -05:00
public string AccessToken { get; set; }
2019-12-10 18:13:57 -05:00
2018-12-27 18:27:57 -05:00
public string ServerId { get; set; }
}
}