Crunchy-Downloader/CRD/Utils/Structs/CrSearchSeries.cs
Elwador acdbc7467b Add - Add search functionality to the add tab
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
2024-07-12 04:35:33 +02:00

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; }
}