11 lines
238 B
C#
11 lines
238 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Manager.YouTube.Models.Innertube;
|
|
|
|
public class Range
|
|
{
|
|
[JsonPropertyName("start")]
|
|
public uint Start { get; set; }
|
|
[JsonPropertyName("end")]
|
|
public uint End { get; set; }
|
|
} |