lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

14 lines
315 B
C#

namespace Shared.Models.Merchant.LtcWallet
{
public class LtcWalletConf
{
public bool enable { get; set; }
public string rpc { get; set; } = "http://127.0.0.1:9332/";
public string rpcuser { get; set; } = "ltc";
public string rpcpassword { get; set; } = "ltc";
}
}