EDBGS/EDPlayerJournal/Entries/SellMicroResourcesEntry.cs

9 lines
215 B
C#
Raw Normal View History

2022-11-01 18:01:28 +01:00
namespace EDPlayerJournal.Entries;
public class SellMicroResourcesEntry : Entry {
protected override void Initialise() {
Price = JSON.Value<int>("Price");
}
public int Price { get; set; }
}