Entwicklung/Sensormat/FritzBox/Temperature.cs

22 lines
589 B
C#
Raw Permalink Normal View History

2025-09-23 10:21:23 +02:00
// Decompiled with JetBrains decompiler
// Type: FritzBox.Temperature
// Assembly: FritzBox, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: DC9FD63C-0A96-43D7-A76E-0506FEB07200
// Assembly location: \\192.168.178.26\Freigabe\FritzBox.dll
using System.Xml.Serialization;
#nullable disable
namespace FritzBox
{
[XmlRoot(ElementName = "temperature")]
public class Temperature
{
[XmlElement(ElementName = "celsius")]
public int Celsius { get; set; }
[XmlElement(ElementName = "offset")]
public int Offset { get; set; }
}
}