mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboExperiments.git
synced 2026-06-18 10:26:37 +00:00
9 lines
258 B
C#
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; }
|
|||
|
|
}
|