9 lines
243 B
C#
9 lines
243 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace JSMR.Infrastructure.Integrations.DLSite.Models.NewWorks;
|
|
|
|
public record NewWorksApiData
|
|
{
|
|
[JsonPropertyName("products")]
|
|
public required NewWorksApiProduct[] Products { get; init; }
|
|
} |