9 lines
157 B
C#
9 lines
157 B
C#
using Wallet.Data;
|
|
|
|
namespace Wallet;
|
|
|
|
public record WalletConnection(string Value) :
|
|
IConnection
|
|
{
|
|
public override string ToString() => Value;
|
|
} |