< Summary

Class:DCL.Backpack.NftSubCategoryFilterModel
Assembly:BackpackEditorHUDV2
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/BackpackEditorHUDV2/NftSubCategoryFilterModel.cs
Covered lines:7
Uncovered lines:0
Coverable lines:7
Total lines:15
Line coverage:100% (7 of 7)
Covered branches:0
Total branches:0
Covered methods:14
Total methods:14
Method coverage:100% (14 of 14)

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/BackpackEditorHUDV2/NftSubCategoryFilterModel.cs

#LineLine coverage
 1using UnityEngine;
 2
 3namespace DCL.Backpack
 4{
 5    public record NftSubCategoryFilterModel
 6    {
 277        public string Name { get; set; }
 158        public string Filter { get; set; }
 209        public int ResultCount { get; set; }
 2710        public bool ShowResultCount { get; set; }
 3611        public Sprite Icon { get; set; }
 5112        public bool IsSelected { get; set; }
 2013        public bool ShowRemoveButton { get; set; }
 14    }
 15}