We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e327b3 commit bf9db8dCopy full SHA for bf9db8d
1 file changed
CardQuery/MainWindow.xaml.cs
@@ -62,6 +62,8 @@ private string GetCardInfo(Card card)
62
stringBuilder.AppendLine($"{nameof(card.Cost)}:{card.Cost}");
63
stringBuilder.AppendLine($"{nameof(card.Attack)}:{card.Attack}");
64
stringBuilder.AppendLine($"{nameof(card.Health)}:{card.Health}");
65
+ stringBuilder.AppendLine($"{nameof(card.Set)}:{card.Set}");
66
+ stringBuilder.AppendLine($"{nameof(card.Class)}:{card.Class}");
67
68
stringBuilder.AppendLine("===split line===");
69
var json = JsonConvert.SerializeObject(card, Formatting.Indented);
0 commit comments