9 lines
215 B
C#
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; }
|
|
}
|