You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
377 B

namespace Minecraft.Crafting.Api.Definitions
{
using System.Text.Json.Serialization;
public class RecipeResultDefinition
{
[JsonPropertyName("count")]
public long Count { get; set; }
[JsonPropertyName("id")]
public long Id { get; set; }
[JsonPropertyName("metadata")]
public long Metadata { get; set; }
}
}