8 lines
128 B
C#
8 lines
128 B
C#
namespace LOC.Website.Common
|
|
{
|
|
public interface ILogger
|
|
{
|
|
void Log(string category, string message);
|
|
}
|
|
}
|