mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
21 lines
603 B
C#
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;
|
|
}
|
|
}
|