< Summary

Class:SVETA.Api.Helpers.TnxSettings
Assembly:SVETA.Api
File(s):/opt/dev/sveta_api_build/SVETA.Api/Helpers/WalletSettings.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:20
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:0

Metrics

MethodLine coverage Branch coverage
get_Encrypted()0%100%
get_Value()0%100%

File(s)

/opt/dev/sveta_api_build/SVETA.Api/Helpers/WalletSettings.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using System.Threading.Tasks;
 5
 6namespace SVETA.Api.Helpers
 7{
 8    public class WalletSettings
 9    {
 10        public string Url { get; set; }
 11        public string AppName { get; set; }
 12        public TnxSettings Tnx { get; set; }
 13    }
 14
 15    public class TnxSettings
 16    {
 017        public bool Encrypted { get; set; }
 018        public string Value { get; set; }
 19    }
 20}

Methods/Properties

get_Encrypted()
get_Value()