< Summary

Class:SVETA.Api.Data.Domain.SmsSettings
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Data/Domain/SmsSettings.cs
Covered lines:8
Uncovered lines:0
Coverable lines:8
Total lines:24
Line coverage:100% (8 of 8)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_SmsSendOn()100%100%
get_SmsService()100%100%
get_GetPatterns()100%100%
get_SendText()100%100%
get_SendByPattern()100%100%
get_AuthService()100%100%
get_Login()100%100%
get_Password()100%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/Domain/SmsSettings.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Threading.Tasks;
 5
 6namespace SVETA.Api.Data.Domain
 7{
 8    public class SmsSettings
 9    {
 15810        public bool SmsSendOn { get; set; }
 611        public string SmsService { get; set; }
 612        public string GetPatterns { get; set; }
 613        public string SendText { get; set; }
 614        public string SendByPattern { get; set; }
 615        public string AuthService { get; set; }
 616        public string Login { get; set; }
 617        public PasswordSetting Password { get; set; }
 18    }
 19
 20    public class SmsToken
 21    {
 22        public string Token { get; set; }
 23    }
 24}