< Summary

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

Metrics

MethodLine coverage Branch coverage
.ctor(...)0%100%
get_RusColumn()0%100%

File(s)

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

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Threading.Tasks;
 5
 6namespace SVETA.Api.Services.Implements.ImportingExporting
 7{
 8    public class MapToAttribute : Attribute
 9    {
 010        public MapToAttribute(string rusColumn)
 011        {
 012            RusColumn = rusColumn;
 013        }
 14
 015        public string RusColumn { get; private set; }
 16    }
 17}

Methods/Properties

.ctor(...)
get_RusColumn()