UserLinkResult.cs 245 B

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