Files
JiboExperiments/OpenJibo/src/Jibo.Runtime.Abstractions/WeatherRequest.cs

9 lines
258 B
C#
Raw Normal View History

2026-03-23 07:51:32 -05:00
namespace Jibo.Runtime.Abstractions;
public sealed class WeatherRequest
{
public string? LocationName { get; init; }
public string? TimeZone { get; init; }
public bool IncludeHourly { get; init; }
public bool IncludeDaily { get; init; }
}