bloxstrap/Bloxstrap/Models/RobloxApi/ThumbnailResponse.cs
2023-03-12 23:05:51 +00:00

20 lines
489 B
C#

using System.Text.Json.Serialization;
namespace Bloxstrap.Models.RobloxApi
{
/// <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!;
}
}