< Summary

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

Metrics

MethodLine coverage Branch coverage
get_IdentityUrl()0%100%
get_ApiName()0%100%
get_ApiSecret()0%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Data/Domain/AuthorizationSettings.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 AuthorizationSettings
 9    {
 010        public string IdentityUrl { get; set; }
 011        public string ApiName { get; set; }
 012        public ApiSecretSetting ApiSecret { get; set; }
 13
 14    }
 15
 16    public class ApiSecretSetting
 17    {
 18        public bool Encrypted { get; set; }
 19        public string Value { get; set; }
 20    }
 21}