aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Connect/PinExchangeResult.cs
blob: d1a184e8cf7f5d5a281fe01af33c3f5caa13dcb3 (plain)
1
2
3
4
5
6
7
8
9
namespace MediaBrowser.Model.Connect
{
    public class PinExchangeResult
    {
        public string UserId { get; set; }
        public string AccessToken { get; set; }
    }
}