Files
Wireless_Eink_HomeScreen/HomeApi/Models/ImageGeneration.cs
Myx f0344bd3ba fix: crash on unavailable source api
the screen not updating because of errors
2025-08-14 17:02:48 +02:00

7 lines
154 B
C#

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