ILog.cs 171 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace COSXML.Log
  5. {
  6. public interface ILog
  7. {
  8. void PrintLog(string message);
  9. }
  10. }