]> git.basschouten.com Git - openhab-addons.git/blob
196a0ab2166010f00bc36a8de3e5d706c7a1d15b
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.kodi.internal.model;
14
15 /**
16  * Class representing a Kodi UniqueID
17  *
18  * @author Meng Yiqi - Initial contribution
19  */
20 public class KodiUniqueID {
21     private String imdb;
22     private String tmdb;
23     private String imdbtvshow;
24     private String tmdbtvshow;
25     private String tmdbepisode;
26     private String douban;
27
28     public String getImdb() {
29         return imdb;
30     }
31
32     public void setImdb(String imdb) {
33         this.imdb = imdb;
34     }
35
36     public String getTmdb() {
37         return tmdb;
38     }
39
40     public void setTmdb(String tmdb) {
41         this.tmdb = tmdb;
42     }
43
44     public String getImdbtvshow() {
45         return imdbtvshow;
46     }
47
48     public void setImdbtvshow(String imdbtvshow) {
49         this.imdbtvshow = imdbtvshow;
50     }
51
52     public String getTmdbtvshow() {
53         return tmdbtvshow;
54     }
55
56     public void setTmdbtvshow(String tmdbtvshow) {
57         this.tmdbtvshow = tmdbtvshow;
58     }
59
60     public String getTmdbepisode() {
61         return tmdbepisode;
62     }
63
64     public void setTmdbepisode(String tmdbepisode) {
65         this.tmdbtvshow = tmdbepisode;
66     }
67
68     public String getDouban() {
69         return douban;
70     }
71
72     public void setDouban(String douban) {
73         this.douban = douban;
74     }
75 }