UNPKG

generator-begcode

Version:

Spring Boot + Angular/React/Vue in one handy generator

15 lines (14 loc) 289 B
export default class JDLApplicationConfigurationOption { name; value; constructor(name, value) { this.name = name; this.value = value; } getValue() { return this.value; } toString() { return `${this.name} ${this.value}`; } }