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

com.cx.restclient.osa.dto.Severity Maven / Gradle / Ivy

The newest version!
package com.cx.restclient.osa.dto;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import java.io.Serializable;

/**
 * Created by zoharby on 09/01/2017.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class Severity implements Serializable {
    private Integer Id;
    private String name;

    public String getName() {
        return name;
    }

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

    public Integer getId() {
        return Id;
    }

    public void setId(Integer id) {
        Id = id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy