AuthenticationResult.cs 520 B

1234567891011121314151617181920
  1. using MediaBrowser.Model.Dto;
  2. using MediaBrowser.Model.Session;
  3. namespace MediaBrowser.Model.Users
  4. {
  5. public class AuthenticationResult
  6. {
  7. /// <summary>
  8. /// Gets or sets the user.
  9. /// </summary>
  10. /// <value>The user.</value>
  11. public UserDto User { get; set; }
  12. /// <summary>
  13. /// Gets or sets the session information.
  14. /// </summary>
  15. /// <value>The session information.</value>
  16. public SessionInfoDto SessionInfo { get; set; }
  17. }
  18. }