ficdown/Ficdown.Parser/Model/Parser/ResolvedPage.cs

12 lines
274 B
C#

namespace Ficdown.Parser.Model.Parser
{
using System.Collections.Generic;
public class ResolvedPage
{
public string Name { get; set; }
public string Content { get; set; }
public IEnumerable<string> ActiveToggles { get; set; }
}
}