2014-06-29 23:04:51 -05:00
|
|
|
|
namespace Ficdown.Parser.Model.Story
|
|
|
|
|
{
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
public class Scene
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
public IList<string> Conditions { get; set; }
|
|
|
|
|
}
|
2014-06-30 11:59:56 -05:00
|
|
|
|
}
|