mirror of
https://github.com/DarthAffe/OBD.NET.git
synced 2025-12-12 16:58:30 +00:00
20 lines
362 B
C#
20 lines
362 B
C#
namespace OBD.NET.Common.OBDData
|
|
{
|
|
public class PidsSupportedA1_C0 : AbstractPidsSupported
|
|
{
|
|
#region Constructors
|
|
|
|
public PidsSupportedA1_C0()
|
|
: base(0xA0, 4)
|
|
{ }
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
public override string ToString() => string.Join(",", SupportedPids);
|
|
|
|
#endregion
|
|
}
|
|
}
|