mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
17 lines
342 B
C#
17 lines
342 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Bloxstrap.Models
|
|
{
|
|
public class RobloxThumbnails
|
|
{
|
|
[JsonPropertyName("data")]
|
|
public List<RobloxThumbnail>? Data { get; set; }
|
|
}
|
|
|
|
public class RobloxThumbnail
|
|
{
|
|
[JsonPropertyName("imageUrl")]
|
|
public string? ImageUrl { get; set; }
|
|
}
|
|
}
|