13 lines
312 B
C#
13 lines
312 B
C#
|
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; }
|
|||
|
public IList<string> Toggles { get; set; }
|
|||
|
}
|
|||
|
}
|