AuthenticationResult.cs 396 B

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