mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 17:23:11 -05:00
12 lines
237 B
C#
12 lines
237 B
C#
using JetBrains.Annotations;
|
|
using System;
|
|
|
|
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models;
|
|
|
|
[PublicAPI]
|
|
public class WeatherValue
|
|
{
|
|
public DateTimeOffset Timestamp { get; set; }
|
|
|
|
public decimal Value { get; set; }
|
|
} |