Files

16 lines
333 B
C#
Raw Permalink Normal View History

2026-08-04 10:29:21 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace CommonUsage.Protocols.VDA5050.Objects
{
public class batteryState
{
public double batteryCharge;
public double batteryVoltage;
public double batteryHealth;
public bool charging;
public int reach;
}
}