< Summary

Information
Class: KT.Modules.Report.Presentation.Dto.ResponseGetLocationDto
Assembly: KT.Modules.Report
File(s): G:\NetProjects\KeepTrack\src\Modules\KT.Modules.Report\Presentation\Dto\ResponseGetReportDto.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 24
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_Latitude()100%11100%
get_Longitude()100%11100%
get_Locality()100%11100%
get_Neighbourhood()100%11100%

File(s)

G:\NetProjects\KeepTrack\src\Modules\KT.Modules.Report\Presentation\Dto\ResponseGetReportDto.cs

#LineLine coverage
 1using KT.Modules.Report.Core.Domain;
 2
 3namespace KT.Modules.Report.Presentation.Dto
 4{
 5
 6    public class ResponseGetLocationDto
 7    {
 78    public required float Latitude { get; set; }
 79    public required float Longitude { get; set; }
 810    public required Locality Locality { get; set; }
 711        public required string Neighbourhood { get; set; }
 12  }
 13    public class ResponseGetReportDto
 14    {
 15        public required string Id { get; set; }
 16        public required string UserId { get; set; }
 17    public required ReportType Type { get; set; }
 18        public required ResponseGetLocationDto Location { get; set; }
 19        public required string Description { get; set; }
 20        public required string Title { get; set; }
 21        public required DateTime CreatedAt { get; set; }
 22        public DateTime UpdatedAt { get; set; }
 23    }
 24}