namespace Ficdown.Parser.Engine { using System.Collections.Generic; using Model.Parser; using Model.Story; public interface IBlockHandler { IEnumerable ExtractBlocks(IEnumerable lines); Story ParseBlocks(IEnumerable blocks); } }