Implemented DLSiteClient.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace JSMR.Infrastructure.Integrations.DLSite.Models;
|
||||
|
||||
public class RelatedProductSeries
|
||||
{
|
||||
[JsonPropertyName("data")]
|
||||
public RelatedProductSeriesData? Data { get; set; }
|
||||
|
||||
[JsonPropertyName("status")]
|
||||
public string? Status { get; set; }
|
||||
|
||||
[JsonPropertyName("msg")]
|
||||
public string? Message { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user