mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-27 16:42:27 +01:00
9 lines
241 B
C#
9 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; }
|
|
}
|
|
}
|