mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-13 16:51:29 -07:00
18 lines
452 B
C#
18 lines
452 B
C#
namespace Bloxstrap.Models.APIs.Roblox
|
|
{
|
|
/// <summary>
|
|
/// Roblox.Web.Responses.Thumbnails.ThumbnailResponse
|
|
/// </summary>
|
|
public class ThumbnailResponse
|
|
{
|
|
[JsonPropertyName("targetId")]
|
|
public long TargetId { get; set; }
|
|
|
|
[JsonPropertyName("state")]
|
|
public string State { get; set; } = null!;
|
|
|
|
[JsonPropertyName("imageUrl")]
|
|
public string ImageUrl { get; set; } = null!;
|
|
}
|
|
}
|