aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Authentication/AuthenticationResult.cs
blob: 6dd8f02d8bb020f330045e6ebe724cabeee421cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using MediaBrowser.Controller.Session;
using MediaBrowser.Model.Dto;


namespace MediaBrowser.Controller.Authentication
{
    public class AuthenticationResult
    {
        public UserDto User { get; set; }
        public SessionInfo SessionInfo { get; set; }
        public string AccessToken { get; set; }
        public string ServerId { get; set; }
    }
}