< Summary

Information
Class: KT.Modules.Alarm.Presentation.Dto.NotificationDto
Assembly: KT.Modules.Alarm
File(s): G:\NetProjects\KeepTrack\src\Modules\KT.Modules.Alarm\Presentation\Dto\NotificationDto.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 10
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_UserId()100%11100%
get_Title()100%11100%
get_Message()100%11100%
get_Payload()100%11100%

File(s)

G:\NetProjects\KeepTrack\src\Modules\KT.Modules.Alarm\Presentation\Dto\NotificationDto.cs

#LineLine coverage
 1namespace KT.Modules.Alarm.Presentation.Dto
 2{
 3    public class NotificationDto
 4    {
 95        public required string UserId { get; set; }
 46        public required string Title { get; set; }
 47        public required string Message { get; set; }
 48        public required string Payload { get; set; }
 9    }
 10}