mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
* replace assetdelivery with thumbnails for rpc * update GetThumbnailUrlAsync logging * fix build error
9 lines
225 B
C#
9 lines
225 B
C#
namespace Bloxstrap.Models.APIs.Roblox
|
|
{
|
|
internal class ThumbnailBatchResponse
|
|
{
|
|
[JsonPropertyName("data")]
|
|
public ThumbnailResponse[] Data { get; set; } = Array.Empty<ThumbnailResponse>();
|
|
}
|
|
}
|