mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-24 21:57:45 +00:00
22 lines
547 B
C#
22 lines
547 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FFXIVClassic_Map_Server.packets.send.search
|
|||
|
{
|
|||
|
class RetainerSearchResult
|
|||
|
{
|
|||
|
public uint itemId;
|
|||
|
public uint marketWard;
|
|||
|
public uint gilCostPerItem;
|
|||
|
public uint quantity;
|
|||
|
public byte numStack;
|
|||
|
public byte quality;
|
|||
|
public string sellerRetainerName;
|
|||
|
public byte[] materiaType = new byte[5];
|
|||
|
public byte[] materiaGrade = new byte[5];
|
|||
|
}
|
|||
|
}
|