Files

14 lines
285 B
C#
Raw Normal View History

2024-02-13 02:59:40 +01:00
using Newtonsoft.Json;
namespace VDownload.Sources.Twitch.Api.Helix.GetVideos.Response
{
public class MutedSegment
{
[JsonProperty("duration")]
public int Duration { get; set; }
[JsonProperty("offset")]
public int Offset { get; set; }
}
}