15 lines
447 B
C#
15 lines
447 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Manager.YouTube.Models.Innertube;
|
|
|
|
public class InnerTubeClient : AdditionalJsonData
|
|
{
|
|
[JsonPropertyName("hl")]
|
|
public string? HLanguage { get; set; }
|
|
[JsonPropertyName("gl")]
|
|
public string? GLanguage { get; set; }
|
|
[JsonPropertyName("remoteHost")]
|
|
public string? RemoteHost { get; set; }
|
|
[JsonPropertyName("rolloutToken")]
|
|
public string? RolloutToken { get; set; }
|
|
} |