mirror of
https://github.com/DanilaFe/abacus
synced 2025-03-14 05:56:35 -07:00
15 lines
247 B
Java
15 lines
247 B
Java
|
package org.nwapw.abacus.config;
|
||
|
|
||
|
/**
|
||
|
* Serializable class that will be used to load TOML
|
||
|
* configurations.
|
||
|
*/
|
||
|
public class Configuration {
|
||
|
|
||
|
/**
|
||
|
* The type of number this calculator should use.
|
||
|
*/
|
||
|
public String numberType;
|
||
|
|
||
|
}
|