namespace Ficdown.Parser.Parser { using System.Collections.Generic; using Model.Parser; using Model.Story; internal interface IBlockHandler { List Warnings { set; } IEnumerable ExtractBlocks(IEnumerable lines); Story ParseBlocks(IEnumerable blocks); } }