|
namespace Ficdown.Parser.Model.Story
|
|
{
|
|
public class Action
|
|
{
|
|
public int Id { get; set; }
|
|
public string Toggle { get; set; }
|
|
public string RawDescription { get; set; }
|
|
public string Description { get; set; }
|
|
public int LineNumber { get; set; }
|
|
public bool Visited { get; set; }
|
|
}
|
|
}
|