package com.sonymusic.dx.dxuiservice.dto;

public class ContentDTO {
    private String soundCodeKey;
    private String soundCodeName;

    public ContentDTO(String soundCodeKey, String soundCodeName) {
        this.soundCodeKey = soundCodeKey;
        this.soundCodeName = soundCodeName;
    }

    public String getSoundCodeKey() {
        return soundCodeKey;
    }

    public void setSoundCodeKey(String soundCodeKey) {
        this.soundCodeKey = soundCodeKey;
    }

    public String getSoundCodeName() {
        return soundCodeName;
    }

    public void setSoundCodeName(String soundCodeName) {
        this.soundCodeName = soundCodeName;
    }
}
