UserLinkResult.cs 241 B

123456789
  1. namespace MediaBrowser.Controller.Connect
  2. {
  3. public class UserLinkResult
  4. {
  5. public bool IsPending { get; set; }
  6. public bool IsNewUserInvitation { get; set; }
  7. public string GuestDisplayName { get; set; }
  8. }
  9. }