using System.Collections.Generic; using System.Text.Json.Serialization; namespace Bloxstrap.Models.RobloxApi { /// /// Roblox.Web.WebAPI.Models.ApiArrayResponse /// public class ApiArrayResponse { [JsonPropertyName("data")] public IEnumerable Data { get; set; } = null!; } }