package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class OperationlineDto4 {
	@NotNull
	private Integer id;
	
	@NotNull
	private String dsc;

	public OperationlineDto4() {
		super();
	}

	public OperationlineDto4(@NotNull Integer id, @NotNull String dsc) {
		super();
		this.id = id;
		this.dsc = dsc;
	}

	public Integer getId() {
		return id;
	}

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

	public String getDsc() {
		return dsc;
	}

	public void setDsc(String dsc) {
		this.dsc = dsc;
	}
	
	
}
