30 lines
604 B
C#
30 lines
604 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PSO2SERVER.Models
|
|
{
|
|
public class Orders
|
|
{
|
|
public struct ClientOrder
|
|
{
|
|
public uint unk1;
|
|
public uint id;
|
|
public uint status;
|
|
public uint finish_date;
|
|
}
|
|
|
|
public struct OrderStatus
|
|
{
|
|
public uint unk1;
|
|
public uint unk2;
|
|
public uint unk3;
|
|
public uint unk4;
|
|
public uint unk5;
|
|
public uint unk6;
|
|
}
|
|
}
|
|
}
|