18 lines
392 B
C#
Raw Normal View History

2017-05-27 18:29:20 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2018-04-08 01:44:42 -05:00
namespace SharedLibraryCore.Interfaces
2017-05-27 18:29:20 -05:00
{
public interface ILogger
{
void WriteVerbose(string msg);
void WriteInfo(string msg);
void WriteDebug(string msg);
void WriteWarning(string msg);
void WriteError(string msg);
}
}