edjournal/SellMicroResourcesEntry.cs

12 lines
251 B
C#
Raw Normal View History

2021-08-25 18:24:44 +02:00
namespace EDJournal {
public class SellMicroResourcesEntry : Entry {
private int price;
protected override void Initialise() {
price = JSON.Value<int>("Price");
}
public int Price => price;
}
}