initial import

This commit is contained in:
2021-05-05 19:17:01 +00:00
commit 09e1d643b6
54 changed files with 14073 additions and 0 deletions
@@ -0,0 +1,14 @@
package io.dietz.ed.companion.domain;
public class Commodity {
public String name;
public long buyPrice;
public long sellPrice;
public long meanPrice;
public int demand;
public int stock;
public int demandBracket;
public int stockBracket;
}