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

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

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

import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;

import lombok.Data;

@Data
public class DeRegisterDeviceReqDto {
	@NotNull
	@Size(min=1,max=36)
	private String deviceCode;
	@NotNull
	private String env;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy