2014-06-29 23:04:51 -05:00
|
|
|
|
namespace Ficdown.Parser.Model.Story
|
|
|
|
|
{
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
public class Scene
|
|
|
|
|
{
|
2014-07-26 23:54:50 -05:00
|
|
|
|
public int Id { get; set; }
|
2014-06-29 23:04:51 -05:00
|
|
|
|
public string Name { get; set; }
|
2014-07-02 23:11:36 -05:00
|
|
|
|
public string Key { get; set; }
|
2014-06-29 23:04:51 -05:00
|
|
|
|
public string Description { get; set; }
|
2014-07-02 23:11:36 -05:00
|
|
|
|
public IDictionary<string, bool> Conditions { get; set; }
|
2014-06-29 23:04:51 -05:00
|
|
|
|
}
|
2014-06-30 11:59:56 -05:00
|
|
|
|
}
|