ILog.cs 94 B

12345678
  1. 
  2. namespace ELog
  3. {
  4. public interface ILog
  5. {
  6. void Debug(string message);
  7. }
  8. }