mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-01-11 20:10:26 +00:00
Add - Add custom calendar option to display newly released episodes for the last 6 days and the current day Fix - Fix decryption issue with file paths containing special characters
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; }
|
|
} |