2014-06-29 23:04:51 -05:00
|
|
|
|
namespace Ficdown.Parser.Model.Story
|
|
|
|
|
{
|
|
|
|
|
public class Action
|
|
|
|
|
{
|
2014-07-26 23:54:50 -05:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Toggle { get; set; }
|
2018-09-25 16:29:53 -05:00
|
|
|
|
public string RawDescription { get; set; }
|
2014-06-29 23:04:51 -05:00
|
|
|
|
public string Description { get; set; }
|
2015-07-19 15:51:10 -05:00
|
|
|
|
public int LineNumber { get; set; }
|
2015-07-19 17:19:40 -05:00
|
|
|
|
public bool Visited { get; set; }
|
2014-06-29 23:04:51 -05:00
|
|
|
|
}
|
|
|
|
|
}
|