14 lines
285 B
C#
14 lines
285 B
C#
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; }
|
|
}
|
|
|
|
} |