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.
|
namespace Minecraft.Crafting.Api.Definitions
|
|
{
|
|
using System.Text.Json.Serialization;
|
|
|
|
public class RecipeInShapeDefinition
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public long Id { get; set; }
|
|
|
|
[JsonPropertyName("metadata")]
|
|
public long Metadata { get; set; }
|
|
}
|
|
}
|