1
2
3
4
5
6
7
8 package com.buckosoft.BuckoVidLib.domain.rest;
9
10 import javax.xml.bind.annotation.XmlRootElement;
11
12
13
14
15
16
17
18 @XmlRootElement(name="TVSeason")
19 public class RestTVSeason {
20 private int episodeCount;
21 private String title;
22 private String hashKey;
23
24
25
26
27 public int getEpisodeCount() {
28 return episodeCount;
29 }
30
31
32
33 public void setEpisodeCount(int episodeCount) {
34 this.episodeCount = episodeCount;
35 }
36
37
38
39 public String getTitle() {
40 return title;
41 }
42
43
44
45 public void setTitle(String title) {
46 this.title = title;
47 }
48
49
50
51 public String getHashKey() {
52 return hashKey;
53 }
54
55
56
57 public void setHashKey(String hashKey) {
58 this.hashKey = hashKey;
59 }
60
61
62 }