ILogger.cs 297 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace NetCore31BACNetTransfor
  5. {
  6. public interface ILogger
  7. {
  8. void Debug(string message);
  9. void Info(string message);
  10. void Warn(string message);
  11. void Error(string message);
  12. void Fatal(string message);
  13. }
  14. }