using System.Collections.Generic; using FlowScope.Data; namespace FlowScope.Config { public sealed class JsonConfigParser : IConfigParser { public string Format => "json"; public IReadOnlyList ParseRows(string fileName, string text) where T : class, IConfigRow { return ReactivePropertyJsonConverter.DeserializeArray(text); } } }