mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 01:25:38 -05:00
12 lines
250 B
C#
12 lines
250 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models
|
|
{
|
|
[PublicAPI]
|
|
public class WindDirectionReadingGrouped
|
|
{
|
|
public int WindDirection { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
}
|
|
} |