Implemented DLSiteClient.

This commit is contained in:
2025-09-08 17:08:47 -04:00
parent 429252e61f
commit f250276a99
39 changed files with 1584 additions and 173 deletions

View File

@@ -0,0 +1,18 @@
using System.Text.Json.Serialization;
namespace JSMR.Infrastructure.Integrations.DLSite.Models;
public class ProductRank
{
[JsonPropertyName("term")]
public string? Term { get; set; }
[JsonPropertyName("category")]
public string? Category { get; set; }
[JsonPropertyName("rank")]
public int Rank { get; set; }
[JsonPropertyName("rank_date")]
public string? RankDate { get; set; }
}