No Description

IMonLogger.cs 217B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Logger.Services.Interfaces
  5. {
  6. public interface IMonLogger
  7. {
  8. void Write();
  9. void AddAction(string action);
  10. }
  11. }

Powered by TurnKey Linux.