mirror of
https://github.com/DarthAffe/OBD.NET.git
synced 2025-12-12 16:58:30 +00:00
re-factored SerialConnection to ISerialConnection interface and removed stuff which is not compatible with NetStandard
11 lines
133 B
C#
11 lines
133 B
C#
namespace OBD.NET.Logging
|
|
{
|
|
public enum OBDLogLevel
|
|
{
|
|
None,
|
|
Error,
|
|
Verbose,
|
|
Debug
|
|
}
|
|
}
|