mirror of
https://github.com/DarthAffe/OBD.NET.git
synced 2025-12-12 16:58:30 +00:00
22 lines
397 B
C#
22 lines
397 B
C#
using System.Collections.Generic;
|
|
|
|
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
|
|
}
|
|
}
|