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

io.castled.dtos.EmailRegistrationRequest Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.dtos;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import javax.validation.constraints.NotNull;

@Data
@AllArgsConstructor
@NoArgsConstructor
public class EmailRegistrationRequest {

    @NotNull
    private String email;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy