2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-07-02 17:03:41 -04:00
Files
pulsar/ObservatoryFramework/Files/Journal/Trade/MarketBuy.cs
2024-01-25 23:18:02 -03:30

13 lines
374 B
C#

namespace Observatory.Framework.Files.Journal
{
public class MarketBuy : JournalBase
{
public ulong MarketID { get; init; }
public string Type { get; init; }
public string Type_Localised { get; init; }
public int Count { get; init; }
public int BuyPrice { get; init; }
public long TotalCost { get; init; }
}
}