aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Authentication/AuthenticationResult.cs
blob: 3c65156e3085d145a2e8da0e38da3a1f72d17224 (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; }
    }
}