AuthenticationResult.cs 415 B

1234567891011121314151617181920
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using MediaBrowser.Controller.Session;
  4. using MediaBrowser.Model.Dto;
  5. namespace MediaBrowser.Controller.Authentication
  6. {
  7. public class AuthenticationResult
  8. {
  9. public UserDto User { get; set; }
  10. public SessionInfo SessionInfo { get; set; }
  11. public string AccessToken { get; set; }
  12. public string ServerId { get; set; }
  13. }
  14. }