2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
2024-01-21 13:35:03 -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; }
}
}