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

12 lines
312 B
C#
Raw Normal View History

namespace Ficdown.Parser.Model.Story
{
using System.Collections.Generic;
public class Scene
{
public string Name { get; set; }
public string Key { get; set; }
public string Description { get; set; }
public IDictionary<string, bool> Conditions { get; set; }
}
2014-06-30 11:59:56 -05:00
}