package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class ServiceOffers6Dto {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	@NotNull
	private boolean offer_full;

	public ServiceOffers6Dto() {
		super();
	}

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

	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;
	}

	
	
}
