]> git.basschouten.com Git - openhab-addons.git/blob
693652c87ac13b7b69ab962bfb8ac820baa1ed23
[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 PVR channel group
17  *
18  * @author Christoph Weitkamp - Initial contribution
19  */
20 public class KodiPVRChannelGroup extends KodiBaseItem {
21     /**
22      * The PVR channel group id
23      */
24     private int channelGroupId;
25
26     /**
27      * The PVR channel type
28      */
29     private String channelType;
30
31     public int getId() {
32         return channelGroupId;
33     }
34
35     public void setId(final int channelGroupId) {
36         this.channelGroupId = channelGroupId;
37     }
38
39     public String getChannelType() {
40         return channelType;
41     }
42
43     public void setChannelType(final String channelType) {
44         this.channelType = channelType;
45     }
46 }