mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
26 lines
787 B
C#
26 lines
787 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class WalletSettingsViewModel
|
|
{
|
|
public string Label { get; set; }
|
|
public string DerivationScheme { get; set; }
|
|
public string DerivationSchemeInput { get; set; }
|
|
|
|
public List<WalletSettingsAccountKeyViewModel> AccountKeys { get; set; } = new List<WalletSettingsAccountKeyViewModel>();
|
|
}
|
|
|
|
public class WalletSettingsAccountKeyViewModel
|
|
{
|
|
public string AccountKey { get; set; }
|
|
[Validation.HDFingerPrintValidator]
|
|
public string MasterFingerprint { get; set; }
|
|
[Validation.KeyPathValidator]
|
|
public string AccountKeyPath { get; set; }
|
|
}
|
|
}
|