All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cx.restclient.dto.EngineConfiguration Maven / Gradle / Ivy

There is a newer version: 2024.3.26
Show newest version
package com.cx.restclient.dto;

public class EngineConfiguration {

    private int id;

    private String name;

    public EngineConfiguration() {
    }

    public EngineConfiguration(String name) {
        this.name = name;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy