Files
EDBGS/EDPlayerJournal/Entries/SellMicroResourcesEntry.cs
T
2022-11-01 18:01:28 +01:00

9 lines
215 B
C#

namespace EDPlayerJournal.Entries;
public class SellMicroResourcesEntry : Entry {
protected override void Initialise() {
Price = JSON.Value<int>("Price");
}
public int Price { get; set; }
}