[CHANGE] Working on auth hash
This commit is contained in:
@@ -21,6 +21,9 @@ public class ClientState : AdditionalJsonData
|
||||
|
||||
[JsonPropertyName("LOGGED_IN")]
|
||||
public bool LoggedIn { get; set; }
|
||||
|
||||
[JsonPropertyName("WEB_PLAYER_CONTEXT_CONFIGS")]
|
||||
public WebPlayerContextConfig? WebPlayerContextConfig { get; set; }
|
||||
|
||||
[JsonPropertyName("USER_ACCOUNT_NAME")]
|
||||
public string? UserAccountName { get; set; }
|
||||
|
9
Manager.YouTube/Models/Innertube/WebPlayerContext.cs
Normal file
9
Manager.YouTube/Models/Innertube/WebPlayerContext.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Manager.YouTube.Models.Innertube;
|
||||
|
||||
public class WebPlayerContext : AdditionalJsonData
|
||||
{
|
||||
[JsonPropertyName("datasyncId")]
|
||||
public string? DatasyncId { get; set; }
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Manager.YouTube.Models.Innertube;
|
||||
|
||||
public class WebPlayerContextConfig : AdditionalJsonData
|
||||
{
|
||||
[JsonPropertyName("WEB_PLAYER_CONTEXT_CONFIG_ID_KEVLAR_WATCH")]
|
||||
public WebPlayerContext? WebPlayerContext { get; set; }
|
||||
}
|
Reference in New Issue
Block a user