1
0
Files
2021-08-19 16:35:32 +07:00

8 lines
128 B
C#

namespace LOC.Website.Common
{
public interface ILogger
{
void Log(string category, string message);
}
}