All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mosip.kernel.masterdata.dto.WorkingNonWorkingDaysDto Maven / Gradle / Ivy

There is a newer version: 1.2.1.0
Show newest version
package io.mosip.kernel.masterdata.dto;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import lombok.Data;

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class WorkingNonWorkingDaysDto {

	// @NotNull
	Boolean sun;
	// @NotNull
	Boolean mon;
	// @NotNull
	Boolean tue;
	// @NotNull
	Boolean wed;
	// @NotNull
	Boolean thu;
	// @NotNull
	Boolean fri;
	// @NotNull
	Boolean sat;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy