package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class EntryStrategyDto2 {
	
	@NotNull
	private EntryStrategyDto entry;

	public EntryStrategyDto2() {
		super();
	}

	public EntryStrategyDto2(@NotNull EntryStrategyDto entry) {
		super();
		this.entry = entry;
	}

	public EntryStrategyDto getEntry() {
		return entry;
	}

	public void setEntry(EntryStrategyDto entry) {
		this.entry = entry;
	}
}
