mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-01-11 20:10:26 +00:00
Add - Added **Include Crunchyroll Artists (Music)** in history to settings for expanded tracking Add - Added **filters to history tab** to hide series or artists for a cleaner view Add - Added a **toggle to include featured music** in series search results Chg - Made small changes to **sync timing** to more accurately detect delays Chg - Migrated settings to json file Fix - Fixed a **sync timing issue** with longer comparison videos to ensure proper synchronization Fix - Fixed issues with artist urls
33 lines
No EOL
991 B
C#
33 lines
No EOL
991 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace CRD.Utils.Structs;
|
|
|
|
public class CrunchyChapters{
|
|
public List<CrunchyChapter> Chapters { get; set; }
|
|
public DateTime lastUpdate { get; set; }
|
|
public string? mediaId { get; set; }
|
|
}
|
|
|
|
public class CrunchyChapter{
|
|
public string approverId { get; set; }
|
|
public string distributionNumber { get; set; }
|
|
public double? end { get; set; }
|
|
public double? start { get; set; }
|
|
public string title { get; set; }
|
|
public string seriesId { get; set; }
|
|
[JsonProperty("new")]
|
|
public string? New { get; set; }
|
|
public string type { get; set; }
|
|
}
|
|
|
|
public class CrunchyOldChapter{
|
|
public string media_id { get; set; }
|
|
public double startTime { get; set; }
|
|
public double endTime { get; set; }
|
|
public double duration { get; set; }
|
|
public string comparedWith { get; set; }
|
|
public string ordering { get; set; }
|
|
public DateTime last_updated { get; set; }
|
|
} |