ficdown/Ficdown.Parser/Model/Parser/Block.cs

12 lines
253 B
C#

namespace Ficdown.Parser.Model.Parser
{
using System.Collections.Generic;
public class Block
{
public BlockType Type { get; set; }
public string Name { get; set; }
public IList<string> Lines { get; set; }
}
}