2014-08-09 15:18:31 -05:00
|
|
|
|
namespace Ficdown.Parser.Model.Parser
|
|
|
|
|
{
|
2014-08-10 15:25:20 -05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2014-08-09 15:18:31 -05:00
|
|
|
|
public class ResolvedPage
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Content { get; set; }
|
2014-08-10 15:25:20 -05:00
|
|
|
|
public IEnumerable<string> ActiveToggles { get; set; }
|
2014-08-09 15:18:31 -05:00
|
|
|
|
}
|
|
|
|
|
}
|