mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-14 23:54:43 -04:00
11 lines
341 B
C#
11 lines
341 B
C#
namespace Observatory.Framework.Files.Journal.Trade;
|
|
|
|
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; }
|
|
} |