|
Last change
on this file was 5ea00d7, checked in by Malek Alavi <malekalavi7@…>, 6 days ago |
|
Initial project upload
|
-
Property mode
set to
100644
|
|
File size:
334 bytes
|
| Line | |
|---|
| 1 | package mk.ukim.finki.wp.db.dto;
|
|---|
| 2 |
|
|---|
| 3 | import lombok.Data;
|
|---|
| 4 | import mk.ukim.finki.wp.db.entity.Lesson;
|
|---|
| 5 |
|
|---|
| 6 | import java.util.ArrayList;
|
|---|
| 7 | import java.util.List;
|
|---|
| 8 |
|
|---|
| 9 | @Data
|
|---|
| 10 | public class ModuleWithLessonDto {
|
|---|
| 11 | private Integer moduleId;
|
|---|
| 12 | private String title;
|
|---|
| 13 | private String description;
|
|---|
| 14 | private List<Lesson> lessons = new ArrayList<>();
|
|---|
| 15 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.