mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
feat(Network): remove item ID from delete request body
This commit is contained in:
parent
6768a3c0fc
commit
1789058e45
2 changed files with 0 additions and 7 deletions
|
|
@ -19,12 +19,6 @@ namespace Dalamud.Game.Network.MarketBoardUploaders.Universalis
|
|||
[JsonProperty("listingID")]
|
||||
public string ListingId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the item ID of the item that was purchased.
|
||||
/// </summary>
|
||||
[JsonProperty("itemID")]
|
||||
public uint ItemId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the quantity of the item that was purchased.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -149,7 +149,6 @@ namespace Dalamud.Game.Network.Universalis.MarketBoardUploaders
|
|||
|
||||
var purchaseRequest = new UniversalisItemListingDeleteRequest
|
||||
{
|
||||
ItemId = itemId,
|
||||
PricePerUnit = purchaseHandler.PricePerUnit,
|
||||
Quantity = purchaseHandler.ItemQuantity,
|
||||
ListingId = purchaseHandler.ListingId.ToString(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue