using System.Collections.Generic; namespace ttrss_co_client.sponsorblock { public class Segment { public string category { get; set; } public string actionType { get; set; } public double[] segment { get; set; } //start time, end time public string UUID { get; set; } public double videoDuration { get; set; } //yes, this is repeated in each segment public int locked { get; set; } public int votes { get; set; } public string description { get; set; } } }