mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-05-11 12:40:32 +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
35 lines
No EOL
798 B
C#
35 lines
No EOL
798 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace CRD.Utils.Structs.Crunchyroll.Music;
|
|
|
|
|
|
public class CrunchyArtistList{
|
|
public int Total{ get; set; }
|
|
public List<CrArtist> Data{ get; set; } =[];
|
|
public Meta? Meta{ get; set; }
|
|
}
|
|
|
|
public class CrArtist{
|
|
[JsonProperty("description")]
|
|
public string? Description{ get; set; }
|
|
|
|
[JsonProperty("name")]
|
|
public string? Name{ get; set; }
|
|
|
|
[JsonProperty("slug")]
|
|
public string? Slug{ get; set; }
|
|
|
|
[JsonProperty("type")]
|
|
public string? Type{ get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public string? Id{ get; set; }
|
|
|
|
[JsonProperty("publishDate")]
|
|
public DateTime? PublishDate{ get; set; }
|
|
|
|
public MusicImages Images{ get; set; } = new();
|
|
|
|
} |