UserLinkResult.cs 242 B

12345678910
  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. }