Files
edjournal/SellMicroResourcesEntry.cs
T
2021-08-25 18:24:44 +02:00

12 lines
251 B
C#

namespace EDJournal {
public class SellMicroResourcesEntry : Entry {
private int price;
protected override void Initialise() {
price = JSON.Value<int>("Price");
}
public int Price => price;
}
}