< Summary

Class:SVETA.Api.Services.Implements.ImportingExporting.ImportResult
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Services/Implements/ImportingExporting/ImportResult.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:19
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_succeed()0%100%
get_errorCount()0%100%
get_reportUrl()0%100%
get_uploadId()0%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Services/Implements/ImportingExporting/ImportResult.cs

#LineLine coverage
 1using SVETA.Api.Services.Interfaces.ImportingExporting;
 2using System;
 3using System.Collections.Generic;
 4using System.Linq;
 5using System.Threading.Tasks;
 6
 7namespace SVETA.Api.Services.Implements.ImportingExporting
 8{
 9    public class ImportResult : IImportResult
 10    {
 011        public bool succeed { get; set; }
 12
 013        public int errorCount { get; set; }
 14
 015        public string reportUrl { get; set; }
 16
 017        public long uploadId { get; set; }
 18    }
 19}