< Summary

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

Metrics

MethodLine coverage Branch coverage
get_Id()0%100%
get_Name()0%100%
get_Barcode()0%100%
get_Photos()0%100%
get_VendorCode()0%100%
get_BrandId()0%100%
get_Brand()0%100%
get_UniqueCode()0%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Goods/GoodCatalogDTO.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Threading.Tasks;
 5
 6namespace SVETA.Api.Data.DTO.Goods
 7{
 8    public class GoodCatalogDTO
 9    {
 010        public long Id { get; set; }
 11
 012        public string Name { get; set; }
 13
 014        public string Barcode { get; set; }
 015        public List<PhotoDTO> Photos { get; set; }
 016        public string VendorCode { get; set; }
 017        public long BrandId { get; set; }
 018        public IdNameDTO Brand { get; set; }
 19
 020        public string UniqueCode { get; set; }
 21    }
 22}