Bugfix for Camera photo not being displayed in the app.

This commit is contained in:
2025-10-06 20:42:34 +02:00
parent 7fa666bcd4
commit 567b279030
32 changed files with 741 additions and 1976 deletions

View File

@@ -0,0 +1,21 @@
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;
}
}