aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Connect/UserLinkResult.cs
blob: 327ceb9524a9350c6bced7904ccb31e92bad1ecb (plain)
1
2
3
4
5
6
7
8
9
namespace MediaBrowser.Controller.Connect
{
    public class UserLinkResult
    {
        public bool IsPending { get; set; }
        public bool IsNewUserInvitation { get; set; }
        public string GuestDisplayName { get; set; }
    }
}