mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
13 lines
374 B
C#
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; }
|
|
}
|
|
}
|