namespace Bloxstrap.Models.APIs.Roblox { /// /// Roblox.Web.Responses.Thumbnails.ThumbnailResponse /// 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!; } }