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

com.genesys.workspace.models.cfg.SubCode Maven / Gradle / Ivy

There is a newer version: 9.0.73
Show newest version
package com.genesys.workspace.models.cfg;

public class SubCode {
    private String name;
    private String code;

    public SubCode(String name, String code) {
        this.name = name;
        this.code = code;
    }

    public String getName() {
        return this.name;
    }

    public String getCode() {
        return this.code;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy