mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 18:41:26 -07:00
15 lines
346 B
C#
15 lines
346 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Bloxstrap.Models.RobloxApi
|
|
{
|
|
/// <summary>
|
|
/// Roblox.Web.WebAPI.Models.ApiArrayResponse
|
|
/// </summary>
|
|
public class ApiArrayResponse<T>
|
|
{
|
|
[JsonPropertyName("data")]
|
|
public IEnumerable<T> Data { get; set; } = null!;
|
|
}
|
|
}
|