< Summary

Class:DCL.MyAccount.MyProfileModel
Assembly:MyAccountHUD
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/MyAccountHUD/MyProfileModel.cs
Covered lines:0
Uncovered lines:1
Coverable lines:1
Total lines:17
Line coverage:0% (0 of 1)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:1
Method coverage:0% (0 of 1)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
MyProfileModel()0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/MyAccountHUD/MyProfileModel.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3
 4namespace DCL.MyAccount
 5{
 6    [Serializable]
 7    public record MyProfileModel
 8    {
 9        public bool IsClaimedMode;
 10        public string MainName;
 11        public string NonClaimedHashtag;
 12        public bool ShowClaimBanner;
 13        public bool ShowInputForClaimedMode;
 014        public List<string> loadedClaimedNames = new ();
 15        public string AboutDescription;
 16    }
 17}

Methods/Properties

MyProfileModel()