package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class ServiceoffersDto5 {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	@NotNull
	private boolean offer_full;
	
	@NotNull
	private StatusDto2 status;

	public ServiceoffersDto5() {
		super();
	}

	public ServiceoffersDto5(@NotNull Integer id, @NotNull String name, @NotNull boolean offer_full,
			@NotNull StatusDto2 status) {
		super();
		this.id = id;
		this.name = name;
		this.offer_full = offer_full;
		this.status = status;
	}

	public Integer getId() {
		return id;
	}

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

	public String getName() {
		return name;
	}

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

	public boolean isOffer_full() {
		return offer_full;
	}

	public void setOffer_full(boolean offer_full) {
		this.offer_full = offer_full;
	}

	public StatusDto2 getStatus() {
		return status;
	}

	public void setStatus(StatusDto2 status) {
		this.status = status;
	}
	
	
}
