package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class FacilityDto2 {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;

	public FacilityDto2() {
		super();
	}

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

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