18 lines
481 B
C#
18 lines
481 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Manager.YouTube.Models.Innertube;
|
|
|
|
public class ClientState
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> AdditionalData { get; set; } = [];
|
|
|
|
[JsonPropertyName("INNERTUBE_API_KEY")]
|
|
public string? InnertubeApiKey { get; set; }
|
|
|
|
[JsonPropertyName("SIGNIN_URL")]
|
|
public string? SigninUrl { get; set; }
|
|
|
|
[JsonPropertyName("SBOX_SETTINGS")]
|
|
public SBoxSettings? SBoxSettings { get; set; }
|
|
} |