mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-04-22 09:21:57 +00:00
Add - Added Artist/Concerts/Music video support https://github.com/Crunchy-DL/Crunchy-Downloader/issues/67 https://github.com/Crunchy-DL/Crunchy-Downloader/issues/46 Add - Added CC support https://github.com/Crunchy-DL/Crunchy-Downloader/issues/65 Fix - "No active subscrition" text shown with funimation sub https://github.com/Crunchy-DL/Crunchy-Downloader/issues/56
15 lines
No EOL
376 B
C#
15 lines
No EOL
376 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CRD.Utils.Structs;
|
|
|
|
public class CrSearchSeries{
|
|
public int count{ get; set; }
|
|
public List<CrBrowseSeries>? Items{ get; set; }
|
|
public string? type{ get; set; }
|
|
}
|
|
|
|
public class CrSearchSeriesBase{
|
|
public int Total{ get; set; }
|
|
public List<CrSearchSeries>? Data{ get; set; }
|
|
public Meta Meta{ get; set; }
|
|
} |