jellyfin/MediaBrowser.Controller/Authentication/AuthenticationResult.cs

20 lines
427 B
C#
Raw Normal View History

2019-12-10 18:13:57 -05:00
#pragma warning disable CS1591
#pragma warning disable SA1600
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; }
}
}