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/MarketSell.cs
2024-01-21 13:35:03 -03:30

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; }
}
}