source: src/main/java/com/example/cookbook/model/Slika.java@ 501396e

Last change on this file since 501396e was 501396e, checked in by Blazho <aleksandar.blazhevski@…>, 5 months ago

added missing files

  • Property mode set to 100644
File size: 745 bytes
Line 
1package com.example.cookbook.model;
2
3public class Slika {
4
5 private Integer redenBroj;
6
7 private Long recId;
8
9 private String pic;
10
11 public Slika() {
12 }
13
14 public Slika(Integer redenBroj, Long recId, String pic) {
15 this.redenBroj = redenBroj;
16 this.recId = recId;
17 this.pic = pic;
18 }
19
20 public String getPic() {
21 return pic;
22 }
23
24 public void setPic(String pic) {
25 this.pic = pic;
26 }
27
28 public Integer getRedenBroj() {
29 return redenBroj;
30 }
31
32 public void setRedenBroj(Integer redenBroj) {
33 this.redenBroj = redenBroj;
34 }
35
36 public Long getRecId() {
37 return recId;
38 }
39
40 public void setRecId(Long recId) {
41 this.recId = recId;
42 }
43}
Note: See TracBrowser for help on using the repository browser.