2014-06-29 23:04:51 -05:00
|
|
|
|
namespace Ficdown.Parser.Model.Parser
|
|
|
|
|
{
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
public class Block
|
|
|
|
|
{
|
|
|
|
|
public BlockType Type { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
2015-07-19 15:51:10 -05:00
|
|
|
|
public IList<Line> Lines { get; set; }
|
|
|
|
|
public int LineNumber { get; set; }
|
2014-06-29 23:04:51 -05:00
|
|
|
|
}
|
|
|
|
|
}
|