< Summary

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

Metrics

MethodLine coverage Branch coverage
get_Comment()0%100%

File(s)

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

#LineLine coverage
 1using System;
 2using System.ComponentModel.DataAnnotations;
 3
 4namespace SVETA.Api.Data.DTO.Movements
 5{
 6    public class ExchangeChangeStatusRequestDto
 7    {
 8        [Required]
 09        public string Comment { get; set; }
 10    }
 11}

Methods/Properties

get_Comment()