14 lines
394 B
C#
14 lines
394 B
C#
|
namespace Ficdown.Parser.Model.Story
|
|||
|
{
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
public class Story
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
public Scene FirstScene { get; set; }
|
|||
|
public IDictionary<string, IList<Action>> States { get; set; }
|
|||
|
public IDictionary<string, IList<Scene>> Scenes { get; set; }
|
|||
|
}
|
|||
|
}
|