Skip to content

Commit

Permalink
Fix accessibility os KookRestApiClient
Browse files Browse the repository at this point in the history
  • Loading branch information
gehongyan committed Dec 29, 2023
1 parent 79b1ca4 commit 008a383
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Kook.Net.Rest/KookRestApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ public event Func<HttpMethod, string, double, Task> SentRequest
public string UserAgent { get; }

internal RequestQueue RequestQueue { get; }
public LoginState LoginState { get; internal set; }
public TokenType AuthTokenType { get; set; }
public string AuthToken { get; set; }
public LoginState LoginState { get; private set; }
public TokenType AuthTokenType { get; private set; }
internal string AuthToken { get; private set; }
internal IRestClient RestClient { get; private set; }
internal ulong? CurrentUserId { get; set; }
internal Func<IRateLimitInfo, Task> DefaultRatelimitCallback { get; set; }
Expand Down

0 comments on commit 008a383

Please sign in to comment.