2014-06-29 23:04:51 -05:00
|
|
|
|
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; }
|
2014-06-29 23:04:51 -05:00
|
|
|
|
public IDictionary<string, IList<Action>> States { get; set; }
|
|
|
|
|
public IDictionary<string, IList<Scene>> Scenes { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|