12 lines
No EOL
372 B
C#
12 lines
No EOL
372 B
C#
using YamlDotNet.Serialization;
|
|
|
|
namespace WingsEmu.Plugins.BasicImplementations.ServerConfigs.ImportObjects.Recipes;
|
|
|
|
public class RecipeItemObject
|
|
{
|
|
[YamlMember(Alias = "itemVnum", ApplyNamingConventions = true)]
|
|
public short ItemVnum { get; set; }
|
|
|
|
[YamlMember(Alias = "quantity", ApplyNamingConventions = true)]
|
|
public short Quantity { get; set; }
|
|
} |