mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-12 06:56:02 +08:00
23 lines
342 B
Java
23 lines
342 B
Java
package emu.grasscutter.data.common;
|
|
|
|
import java.util.List;
|
|
|
|
public class MaterialItemsData {
|
|
private int id;
|
|
private int count;
|
|
|
|
public int getId() {
|
|
return this.id;
|
|
}
|
|
public void setId(int value) {
|
|
this.id = value;
|
|
}
|
|
|
|
public int getCount() {
|
|
return this.count;
|
|
}
|
|
public void setCount(int value) {
|
|
this.count = value;
|
|
}
|
|
}
|