source: Git/src/main/java/com/wediscussmovies/project/querymodels/GenreLikes.java@ 5b447b0

main
Last change on this file since 5b447b0 was 5b447b0, checked in by Test <matonikolov77@…>, 2 years ago

Adding models and resources

  • Property mode set to 100644
File size: 265 bytes
Line 
1package com.wediscussmovies.project.querymodels;
2
3import lombok.Data;
4
5@Data
6public class GenreLikes {
7
8 private String name;
9 private Long likes;
10
11 public GenreLikes(String name, Long likes) {
12 this.name = name;
13 this.likes = likes;
14 }
15}
Note: See TracBrowser for help on using the repository browser.