< Summary

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

Metrics

MethodLine coverage Branch coverage
get_Url()0%100%
get_AppName()0%100%
get_Tnx()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    {
 010        public string Url { get; set; }
 011        public string AppName { get; set; }
 012        public TnxSettings Tnx { get; set; }
 13    }
 14
 15    public class TnxSettings
 16    {
 17        public bool Encrypted { get; set; }
 18        public string Value { get; set; }
 19    }
 20}

Methods/Properties

get_Url()
get_AppName()
get_Tnx()