21 lines
606 B
Java
21 lines
606 B
Java
package com.haussteuerung.helper;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
public class Rollo {
|
|
@SerializedName("DeviceID")
|
|
private final String deviceId;
|
|
@SerializedName("Name")
|
|
private final String name;
|
|
@SerializedName("Device")
|
|
private final String device;
|
|
@SerializedName("Shutterposition")
|
|
private final int shutterposition;
|
|
|
|
public Rollo(String deviceId, String name, String device, int shutterposition) {
|
|
this.deviceId = deviceId;
|
|
this.name = name;
|
|
this.device = device;
|
|
this.shutterposition = shutterposition;
|
|
}
|
|
} |