14 lines
395 B
C#
14 lines
395 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 string FirstScene { get; set; }
|
|
public IDictionary<string, IList<Action>> States { get; set; }
|
|
public IDictionary<string, IList<Scene>> Scenes { get; set; }
|
|
}
|
|
}
|