Last change
on this file was 743de55, checked in by macagaso <gasoskamarija@…>, 6 weeks ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
762 bytes
|
Line | |
---|
1 | package finki.it.terapijamkbackend.spring.dto;
|
---|
2 |
|
---|
3 | import lombok.Getter;
|
---|
4 | import lombok.Setter;
|
---|
5 |
|
---|
6 | import java.time.LocalDateTime;
|
---|
7 |
|
---|
8 | @Getter
|
---|
9 | @Setter
|
---|
10 | public class TermsResponse {
|
---|
11 | private LocalDateTime term;
|
---|
12 | private String name;
|
---|
13 | private String surname;
|
---|
14 | private String couponCode;
|
---|
15 | private String additionalInfo;
|
---|
16 | private String username;
|
---|
17 | private Long userId;
|
---|
18 |
|
---|
19 | public TermsResponse(LocalDateTime term, String name,Long userId, String surname, String couponCode, String additionalInfo, String username) {
|
---|
20 | this.term = term;
|
---|
21 | this.name = name;
|
---|
22 | this.surname = surname;
|
---|
23 | this.couponCode = couponCode;
|
---|
24 | this.additionalInfo = additionalInfo;
|
---|
25 | this.username = username;
|
---|
26 | this.userId=userId;
|
---|
27 | }
|
---|
28 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.