18 lines
374 B
C#
18 lines
374 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace NonaBGS.Journal {
|
|||
|
public class SellMicroResourcesEntry : Entry {
|
|||
|
private int price;
|
|||
|
|
|||
|
protected override void Initialise() {
|
|||
|
price = JSON.Value<int>("Price");
|
|||
|
}
|
|||
|
|
|||
|
public int Price => price;
|
|||
|
}
|
|||
|
}
|