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