* 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>
7 lines
154 B
C#
7 lines
154 B
C#
namespace HomeApi.Models;
|
|
|
|
public class Image
|
|
{
|
|
public WeatherInformation? Weather { get; set; }
|
|
public List<TimeTable>? TimeTable { get; set; }
|
|
} |