package com.dacrt.SBIABackend.dto;

public class ScenaryCellDto {
    private Integer id;
    private String value;

    public ScenaryCellDto() {}
    public ScenaryCellDto(Integer id, String value) {
        this.id = id;
        this.value = value;
    }

    public Integer getId() { return id; }
    public void setId(Integer id) { this.id = id; }
    public String getValue() { return value; }
    public void setValue(String value) { this.value = value; }
}