Entwicklung/Sensormat/FritzBox/GetDeviceInfoResponse.cs
2025-09-23 10:21:23 +02:00

56 lines
1.7 KiB
C#

// Decompiled with JetBrains decompiler
// Type: FritzBox.GetDeviceInfoResponse
// 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.Diagnostics;
using System.Xml.Serialization;
#nullable disable
namespace FritzBox
{
[XmlRoot(ElementName = "device")]
public class GetDeviceInfoResponse
{
[XmlElement(ElementName = "present")]
public int Present { get; set; }
[XmlElement(ElementName = "txbusy")]
public int Txbusy { get; set; }
[XmlElement(ElementName = "name")]
public string Name { get; set; }
[XmlElement(ElementName = "switch")]
public Switch Switch { get; set; }
[XmlElement(ElementName = "simpleonoff")]
public Simpleonoff Simpleonoff { get; set; }
[XmlElement(ElementName = "powermeter")]
public Powermeter Powermeter { get; set; }
[XmlElement(ElementName = "temperature")]
public Temperature Temperature { get; set; }
[XmlAttribute(AttributeName = "identifier")]
public string Identifier { get; set; }
[XmlAttribute(AttributeName = "id")]
public int Id { get; set; }
[XmlAttribute(AttributeName = "functionbitmask")]
public int Functionbitmask { get; set; }
[XmlAttribute(AttributeName = "fwversion")]
public string Fwversion { get; set; }
[XmlAttribute(AttributeName = "manufacturer")]
public string Manufacturer { get; set; }
[XmlAttribute(AttributeName = "productname")]
public string Productname { get; set; }
}
}