main
Last change
on this file was 980eeda, checked in by Test <matonikolov77@…>, 2 years ago |
Restructuring project
|
-
Property mode
set to
100644
|
File size:
288 bytes
|
Line | |
---|
1 | package com.wediscussmovies.project.ajaxmodels;
|
---|
2 |
|
---|
3 | import lombok.Data;
|
---|
4 |
|
---|
5 | @Data
|
---|
6 | public class Grade {
|
---|
7 | private Integer rating;
|
---|
8 | private String reason;
|
---|
9 |
|
---|
10 | public Grade(String rating, String reason) {
|
---|
11 | this.rating = Integer.parseInt(rating);
|
---|
12 | this.reason = reason;
|
---|
13 | }
|
---|
14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.