package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

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

	public ChannelDto2() {
		super();
	}

	public ChannelDto2(@NotNull Integer id, @NotNull String name, @NotNull String 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 String getOffer_full() {
		return offer_full;
	}

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