< Summary

Class:WinSolutions.Sveta.Server.Data.DataModel.Entities.SmsHistory
Assembly:WinSolutions.Sveta.Server
File(s):/opt/dev/sveta_api_build/WinSolutions.Sveta.Server/Data/DataModel/Entities/SmsHistory.cs
Covered lines:0
Uncovered lines:5
Coverable lines:5
Total lines:18
Line coverage:0% (0 of 5)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_PatternId()0%100%
get_Phone()0%100%
get_ContragentExtKey()0%100%
get_StatusCode()0%100%
get_Error()0%100%

File(s)

/opt/dev/sveta_api_build/WinSolutions.Sveta.Server/Data/DataModel/Entities/SmsHistory.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4using System.ComponentModel.DataAnnotations.Schema;
 5
 6namespace WinSolutions.Sveta.Server.Data.DataModel.Entities
 7{
 8    public class SmsHistory: ExternalRecord
 9    {
 010        public string PatternId { get; set; }
 011        public string Phone { get; set; }
 012        public string ContragentExtKey { get; set; }
 013        public int StatusCode { get; set; }
 014        public string Error { get; set; }
 15    }
 16
 17
 18}