Dalamud/Dalamud/Game/Network/MarketBoardItemRequest.cs
2021-05-30 07:15:47 -04:00

21 lines
603 B
C#

using System.Collections.Generic;
using Dalamud.Game.Network.Structures;
namespace Dalamud.Game.Network
{
internal class MarketBoardItemRequest
{
public uint CatalogId { get; set; }
public byte AmountToArrive { get; set; }
public List<MarketBoardCurrentOfferings.MarketBoardItemListing> Listings { get; set; }
public List<MarketBoardHistory.MarketBoardHistoryListing> History { get; set; }
public int ListingsRequestId { get; set; } = -1;
public bool IsDone => this.Listings.Count == this.AmountToArrive && this.History.Count != 0;
}
}