mirror of
https://github.com/DarthAffe/OBD.NET.git
synced 2025-12-13 01:08:30 +00:00
re-factored SerialConnection to ISerialConnection interface and removed stuff which is not compatible with NetStandard
8 lines
133 B
C#
8 lines
133 B
C#
namespace OBD.NET.Logging
|
|
{
|
|
public interface IOBDLogger
|
|
{
|
|
void WriteLine(string text, OBDLogLevel level);
|
|
}
|
|
}
|