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 PidsSupported41_60 : AbstractPidsSupported
|
|
{
|
|
#region Constructors
|
|
|
|
public PidsSupported41_60()
|
|
: base(0x40, 4)
|
|
{ }
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
public override string ToString() => string.Join(",", SupportedPids);
|
|
|
|
#endregion
|
|
}
|
|
}
|