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

com.cx.restclient.sast.dto.CxNameObj Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * Created by Galn on 05/03/2018.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class CxNameObj {
    private long id;
    private String name;

    public long getId() {
        return id;
    }

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

    public String getName() {
        return name;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy