2020-05-29 16:37:35 +02:00

6 lines
109 B
JavaScript

class Setting{
constructor(name, defaultValue){
this.name = name;
this.defaultValue = defaultValue;
}
}