You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/MangaDexSharp.Utilities.Cli/AuthOptions.cs
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,17 +3,22 @@
3
3
publicclassAuthOptions
4
4
{
5
5
[Option('a',"access-token",HelpText="Your account access token, if you have one. (You can get this from your browser's dev tools.)")]
6
+
[Secret]
6
7
publicstring?AccessToken{get;set;}
7
8
8
9
[Option('c',"client-id",HelpText="The client ID to use for the request. (You can get this from: https://mangadex.org/settings > API Clients)")]
10
+
[Secret]
9
11
publicstring?ClientId{get;set;}
10
12
11
13
[Option('s',"client-secret",HelpText="The client secret to use for the request. (You can get this from: https://mangadex.org/settings > API Clients)")]
14
+
[Secret]
12
15
publicstring?ClientSecret{get;set;}
13
16
14
17
[Option('u',"username",HelpText="The username of your MangaDex account.")]
18
+
[Secret]
15
19
publicstring?Username{get;set;}
16
20
17
21
[Option('p',"password",HelpText="The password of your MangaDex account.")]
0 commit comments