mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
17 lines
564 B
C#
17 lines
564 B
C#
namespace Observatory.Framework.Files.Journal
|
|
{
|
|
public class MarketSell : JournalBase
|
|
{
|
|
public ulong MarketID { get; init; }
|
|
public string Type { get; init; }
|
|
public string Type_Localised { get; init; }
|
|
public int Count { get; init; }
|
|
public int SellPrice { get; init; }
|
|
public long TotalSale { get; init; }
|
|
public int AvgPricePaid { get; init; }
|
|
public bool IllegalGoods { get; init; }
|
|
public bool StolenGoods { get; init; }
|
|
public bool BlackMarket { get; init; }
|
|
}
|
|
}
|