Skip to content

Commit bf9db8d

Browse files
committed
show card set and class of card
1 parent 2e327b3 commit bf9db8d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

CardQuery/MainWindow.xaml.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ private string GetCardInfo(Card card)
6262
stringBuilder.AppendLine($"{nameof(card.Cost)}:{card.Cost}");
6363
stringBuilder.AppendLine($"{nameof(card.Attack)}:{card.Attack}");
6464
stringBuilder.AppendLine($"{nameof(card.Health)}:{card.Health}");
65+
stringBuilder.AppendLine($"{nameof(card.Set)}:{card.Set}");
66+
stringBuilder.AppendLine($"{nameof(card.Class)}:{card.Class}");
6567

6668
stringBuilder.AppendLine("===split line===");
6769
var json = JsonConvert.SerializeObject(card, Formatting.Indented);

0 commit comments

Comments
 (0)