< Summary

Information
Class: KT.Modules.Security.Presentation.Dto.RefreshTokenRequestDto
Assembly: KT.Modules.Security
File(s): G:\NetProjects\KeepTrack\src\Modules\KT.Modules.Security\Presentation\Dto\RefreshTokenRequestDto.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 10
Line coverage: 0%
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_RefreshToken()100%210%

File(s)

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

#LineLine coverage
 1using System.ComponentModel.DataAnnotations;
 2
 3namespace KT.Modules.Security.Presentation.Dto
 4{
 5    public class RefreshTokenRequestDto
 6    {
 7        [Required, MinLength(20), MaxLength(512)]
 08        public string RefreshToken { get; set; } = string.Empty;
 9    }
 10}

Methods/Properties

get_RefreshToken()