Files
JiboExperiments/OpenJibo/src/Jibo.Runtime.Abstractions/WeatherRequest.cs
2026-03-23 07:51:32 -05:00

9 lines
258 B
C#

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; }
}