using System.Collections.Generic; namespace FlowScope.Config { public interface IConfigParser { string Format { get; } IReadOnlyList ParseRows( string fileName, string text) where T : class, IConfigRow; } }