< Summary

Information
Class: KT.Modules.Security.Presentation.Dto.TokenResponseDto
Assembly: KT.Modules.Security
File(s): G:\NetProjects\KeepTrack\src\Modules\KT.Modules.Security\Presentation\Dto\TokenResponseDto.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 8
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_AccessToken()100%11100%
get_RefreshToken()100%11100%

File(s)

G:\NetProjects\KeepTrack\src\Modules\KT.Modules.Security\Presentation\Dto\TokenResponseDto.cs

#LineLine coverage
 1namespace KT.Modules.Security.Presentation.Dto
 2{
 3    public class TokenResponseDto
 4    {
 65        public string AccessToken { get; set; } = string.Empty;
 66        public string RefreshToken { get; set; } = string.Empty;
 7    }
 8}