14 lines
No EOL
230 B
C#
14 lines
No EOL
230 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
namespace WingsEmu.DTOs.Recipes;
|
|
|
|
public class RecipeItemDTO
|
|
{
|
|
public short Amount { get; set; }
|
|
|
|
public short Slot { get; set; }
|
|
|
|
public short ItemVNum { get; set; }
|
|
} |