Files
Wireless_Eink_HomeScreen/HomeApi/Models/ImageGeneration.cs
SocksOnHead 32b136d4cc fix: crash on unavailable source api (#4)
* fix: crash on unavailable source api

the screen not updating because of errors

* Change temperature format if null

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-08-14 17:55:40 +02:00

7 lines
154 B
C#

namespace HomeApi.Models;
public class Image
{
public WeatherInformation? Weather { get; set; }
public List<TimeTable>? TimeTable { get; set; }
}