< Summary

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

Metrics

MethodLine coverage Branch coverage
get_GUID()0%100%
get_DocumentNumber()0%100%
get_DtCreated()0%100%
get_DtModified()0%100%
get_Status()0%100%
get_DeliveryType()0%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Movements/ExchangeMovementStatus.cs

#LineLine coverage
 1using System;
 2
 3namespace SVETA.Api.Data.DTO.Movements
 4{
 5    public class ExchangeMovementStatus
 6    {
 07        public Guid GUID { get; set; }
 08        public string DocumentNumber { get; set; }
 09        public DateTime DtCreated { get; set; }
 010        public DateTime DtModified { get; set; }
 011        public string Status { get; set; }
 012        public string DeliveryType { get; set; }
 13    }
 14}