using System.Collections; using System.Collections.Generic; public interface INetworkLogger : IEnumerable, IEnumerable { void LogInfo(string text); void LogWarning(string text); void LogError(string text); void ClearLog(); }