Files
Walleby/Wallet/WalletConnection.cs
T
TheXamlGuy bc5023c8ac Bug fixes
2024-07-05 21:57:01 +01:00

9 lines
157 B
C#

using Wallet.Data;
namespace Wallet;
public record WalletConnection(string Value) :
IConnection
{
public override string ToString() => Value;
}