using System.Text.Json.Serialization; namespace StabilityMatrix.Core.Models.Api.OpenArt; public class OpenArtSearchResponse { [JsonPropertyName("items")] public IEnumerable Items { get; set; } [JsonPropertyName("total")] public int Total { get; set; } [JsonPropertyName("nextCursor")] public string? NextCursor { get; set; } }