15 lines
279 B
C#
15 lines
279 B
C#
using System.Collections.Generic;
|
|
|
|
namespace FlowScope.Config
|
|
{
|
|
public interface IConfigParser
|
|
{
|
|
string Format { get; }
|
|
|
|
IReadOnlyList<T> ParseRows<T>(
|
|
string fileName,
|
|
string text)
|
|
where T : class, IConfigRow;
|
|
}
|
|
}
|