ficdown/Ficdown.Parser/Model/Story/Story.cs

14 lines
389 B
C#
Raw Normal View History

namespace Ficdown.Parser.Model.Story
{
using System.Collections.Generic;
public class Story
{
public string Name { get; set; }
public string Description { get; set; }
2014-06-30 16:57:14 -05:00
public string FirstScene { get; set; }
public IDictionary<string, IList<Scene>> Scenes { get; set; }
public IDictionary<string, Action> Actions { get; set; }
}
}