jellyfin/MediaBrowser.Controller/Connect/UserLinkResult.cs
2019-01-17 20:24:39 +01:00

10 lines
241 B
C#

namespace MediaBrowser.Controller.Connect
{
public class UserLinkResult
{
public bool IsPending { get; set; }
public bool IsNewUserInvitation { get; set; }
public string GuestDisplayName { get; set; }
}
}