12 lines
251 B
C#
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;
|
|
}
|
|
}
|