File tree Expand file tree Collapse file tree
src/Codebreaker.ViewModels/Models Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11namespace Codebreaker . ViewModels . Models ;
22
3- public class Move ( ICollection < string > guessPegs , ICollection < string > ? keyPegs = null )
3+ public class Move ( ICollection < Field > guessPegs , ICollection < string > ? keyPegs = null )
44{
55 /// <summary>
66 /// The guess pegs from the user for this move.
77 /// </summary>
8- public ICollection < string > GuessPegs { get ; } = guessPegs ;
8+ public ICollection < Field > GuessPegs { get ; } = guessPegs ;
99
1010 /// <summary>
1111 /// The result from the analyer for this move based on the associated game that contains the move.
@@ -14,4 +14,4 @@ public class Move(ICollection<string> guessPegs, ICollection<string>? keyPegs =
1414 /// Null if the move was not analyzed yet.
1515 /// </remarks>
1616 public ICollection < string > ? KeyPegs { get ; } = keyPegs ;
17- }
17+ }
You can’t perform that action at this time.
0 commit comments