< Summary

Class:SVETA.Api.Data.DTO.Sms.SmsPatternRequestDTO
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Sms/SmsPatternRequestDTO.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:16
Line coverage:0% (0 of 5)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_PatternId()0%100%
get_Properties()0%100%
get_Phone()0%100%
get_CompanyId()0%100%
get_DocumentId()0%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/DTO/Sms/SmsPatternRequestDTO.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Threading.Tasks;
 5
 6namespace SVETA.Api.Data.DTO.Sms
 7{
 8    public class SmsPatternRequestDTO
 9    {
 010        public string PatternId { get; set; }
 011        public Dictionary<string, string> Properties { get; set; } = new Dictionary<string, string>();
 012        public string Phone { get; set; }
 013        public string CompanyId { get; set; }
 014        public string DocumentId { get; set; }
 15    }
 16}