planting runtime seeds

This commit is contained in:
Jacob Dubin
2026-03-23 07:51:32 -05:00
parent 8381b401a7
commit 34178c71f1
38 changed files with 330 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
namespace Jibo.Runtime.Abstractions;
public sealed class WeatherResult
{
public string Summary { get; init; } = string.Empty;
public int? CurrentTemperatureF { get; init; }
public int? HighTodayF { get; init; }
public int? LowTonightF { get; init; }
public string? Conditions { get; init; }
public string? LocationLabel { get; init; }
public IDictionary<string, object?> Raw { get; init; } = new Dictionary<string, object?>();
}