7 lines
85 B
C#
7 lines
85 B
C#
|
|
|||
|
namespace Behavioral;
|
|||
|
|
|||
|
public interface ILogReader
|
|||
|
{
|
|||
|
List<LogEntry> Read();
|
|||
|
}
|