package com.sonymusic.dx.dxadvsearchservice.dto;

public class ProductPublishStatusDTO {

    private Integer publishKey;
    private String publishName;

    ProductPublishStatusDTO(Integer publishKey, String publishName){
        this.publishKey=publishKey;
        this.publishName=publishName;
    }

    public Integer getPublishKey() {
        return publishKey;
    }

    public void setPublishKey(Integer publishKey) {
        this.publishKey = publishKey;
    }

    public String getPublishName() {
        return publishName;
    }

    public void setPublishName(String publishName) {
        this.publishName = publishName;
    }
}
