AuthenticationResult.cs 362 B

1234567891011121314
  1. using MediaBrowser.Controller.Session;
  2. using MediaBrowser.Model.Dto;
  3. namespace MediaBrowser.Controller.Authentication
  4. {
  5. public class AuthenticationResult
  6. {
  7. public UserDto User { get; set; }
  8. public SessionInfo SessionInfo { get; set; }
  9. public string AccessToken { get; set; }
  10. public string ServerId { get; set; }
  11. }
  12. }