Implemented DLSiteClient.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace JSMR.Infrastructure.Integrations.DLSite.Models;
|
||||
|
||||
public class ProductRateCountDetail
|
||||
{
|
||||
[JsonPropertyName("review_point")]
|
||||
public int ReviewPoint { get; set; }
|
||||
|
||||
[JsonPropertyName("count")]
|
||||
public int Count { get; set; }
|
||||
|
||||
[JsonPropertyName("ratio")]
|
||||
public int Ratio { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user