10 lines
231 B
C#
10 lines
231 B
C#
namespace Ficdown.Parser.Model.Player
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
internal class StateQueueItem
|
|
{
|
|
public PageState Page { get; set; }
|
|
public IList<State> AffectedStates { get; set; }
|
|
}
|
|
}
|