Skip to content

Commit

Permalink
feat: #176 Add support for Hero equipment
Browse files Browse the repository at this point in the history
  • Loading branch information
tparviainen committed Dec 18, 2023
1 parent c4fac36 commit 0cf0b00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ClashOfClans.Models/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ public class Player : Identity

public PlayerItemLevelList Heroes { get; set; } = default!;

public PlayerItemLevelList HeroEquipment { get; set; } = default!;

public PlayerItemLevelList Spells { get; set; } = default!;

/// <summary>
Expand Down
2 changes: 2 additions & 0 deletions src/ClashOfClans.Models/PlayerItemLevel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ public class PlayerItemLevel
public Village Village { get => _village ?? default; set => _village = value; }

public bool? SuperTroopIsActive { get; set; }

public PlayerItemLevelList Equipment { get; set; } = default!;
}
}

0 comments on commit 0cf0b00

Please sign in to comment.