1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace NetCore31BACNetTransfor
- {
- public interface ILogger
- {
- void Debug(string message);
- void Info(string message);
- void Warn(string message);
- void Error(string message);
- void Fatal(string message);
- }
- }
|