Files
govee-csharp-connector/GoveeCSharpConnector/Objects/GoveeDevice.cs

8 lines
231 B
C#

namespace GoveeCSharpConnector.Objects;
public class GoveeDevice {
public string DeviceId { get; set; }
public string Model { get; set; }
public string DeviceName { get; set; }
public string Address { get; set; }
}