Last change
on this file was 9868304, checked in by ste08 <sjovanoska@…>, 4 months ago |
Frontend + some backend changes
|
-
Property mode
set to
100644
|
File size:
356 bytes
|
Rev | Line | |
---|
[9868304] | 1 | package com.example.skychasemk.dto;
|
---|
| 2 |
|
---|
| 3 | import jakarta.validation.constraints.Email;
|
---|
| 4 | import jakarta.validation.constraints.NotBlank;
|
---|
| 5 | import jakarta.validation.constraints.Size;
|
---|
| 6 | import lombok.Data;
|
---|
| 7 |
|
---|
| 8 | public class ApplicationUserLoginDTO {
|
---|
| 9 |
|
---|
| 10 | @Email
|
---|
| 11 | @NotBlank
|
---|
| 12 | private String email;
|
---|
| 13 |
|
---|
| 14 | public String getEmail() {
|
---|
| 15 | return email;
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.