package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class Weekdays {
	
	@NotNull
	private String mon;
	
	@NotNull
	private String tue;
	
	@NotNull
	private String wed;
	
	@NotNull
	private String thu;
	
	@NotNull
	private String fri;
	
	@NotNull
	private String sat;
	
	@NotNull
	private String sun;

	public Weekdays() {
		super();
	}

	public Weekdays(@NotNull String mon, @NotNull String tue, @NotNull String wed, @NotNull String thu,
			@NotNull String fri, @NotNull String sat, @NotNull String sun) {
		super();
		this.mon = mon;
		this.tue = tue;
		this.wed = wed;
		this.thu = thu;
		this.fri = fri;
		this.sat = sat;
		this.sun = sun;
	}

	public String getMon() {
		return mon;
	}

	public void setMon(String mon) {
		this.mon = mon;
	}

	public String getTue() {
		return tue;
	}

	public void setTue(String tue) {
		this.tue = tue;
	}

	public String getWed() {
		return wed;
	}

	public void setWed(String wed) {
		this.wed = wed;
	}

	public String getThu() {
		return thu;
	}

	public void setThu(String thu) {
		this.thu = thu;
	}

	public String getFri() {
		return fri;
	}

	public void setFri(String fri) {
		this.fri = fri;
	}

	public String getSat() {
		return sat;
	}

	public void setSat(String sat) {
		this.sat = sat;
	}

	public String getSun() {
		return sun;
	}

	public void setSun(String sun) {
		this.sun = sun;
	}

	
}
