6 lines
109 B
JavaScript
6 lines
109 B
JavaScript
class Setting{
|
|
constructor(name, defaultValue){
|
|
this.name = name;
|
|
this.defaultValue = defaultValue;
|
|
}
|
|
} |