< Summary

Class:SVETA.Api.Data.DTO.EnumDTO
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/EnumDTO.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:14
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_Id()0%100%
get_Name()0%100%
get_Description()0%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/EnumDTO.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Threading.Tasks;
 5
 6namespace SVETA.Api.Data.DTO
 7{
 8    public class EnumDTO
 9    {
 010        public int Id { get; set; }
 011        public string Name { get; set; }
 012        public string Description { get; set; }
 13    }
 14}