package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class StrategyDetDto {
	
	@NotNull
	private String id;
	
	@NotNull
	private String name;
	
	@NotNull
	private String dsc;
	
	private TypeStrategiDetDto type;

	public StrategyDetDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public StrategyDetDto(@NotNull String id, @NotNull String name, TypeStrategiDetDto type,String dsc) {
		super();
		this.id = id;
		this.name = name;
		this.type = type;
		this.dsc = dsc;
	}

	public String getId() {
		return id;
	}

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

	public String getName() {
		return name;
	}

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

	public TypeStrategiDetDto getType() {
		return type;
	}

	public void setType(TypeStrategiDetDto type) {
		this.type = type;
	}

	public String getDsc() {
		return dsc;
	}

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

}
