blob: 0388a6430df75df7aa75e10f68cc9d73a2fb6a5e (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace MediaBrowser.Controller.Connect
{
public class UserLinkResult
{
public bool IsPending { get; set; }
public bool IsNewUserInvitation { get; set; }
public string GuestDisplayName { get; set; }
}
}
|