ficdown/Ficdown.Parser/Model/Parser/ResolvedStory.cs

13 lines
323 B
C#

namespace Ficdown.Parser.Model.Parser
{
using System.Collections.Generic;
public class ResolvedStory
{
public string Name { get; set; }
public string Description { get; set; }
public string FirstPage { get; set; }
public IEnumerable<ResolvedPage> Pages { get; set; }
}
}