9 lines
228 B
C#
9 lines
228 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace JSMR.Infrastructure.Integrations.DLSite.Models;
|
|
|
|
public class RelatedProductSeriesData
|
|
{
|
|
[JsonPropertyName("worknos")]
|
|
public string[] WorkNumbers { get; set; } = [];
|
|
} |