eft-lootvalueex/Plugin/Structs/TradeOfferStruct.cs
Yui db4003caa7
feat: get best trader offer for items
TODO: Make a better conversion for USD/EUR to RUB
2024-11-08 17:17:10 -03:00

24 lines
646 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LootValueEX.Structs
{
internal readonly struct TradeOfferStruct
{
internal readonly string TraderID;
internal readonly string CurrencyID;
internal readonly int Price;
internal readonly float PriceInRouble;
internal TradeOfferStruct(string traderId, string currencyId, int price, float priceInRouble)
{
TraderID = traderId;
CurrencyID = currencyId;
Price = price;
PriceInRouble = priceInRouble;
}
}
}