using System.Collections.Generic;
namespace BTCPayServer.Client.Models
{
public class OnChainPaymentMethodPreviewResultData
{
///
/// a list of addresses generated by the derivation scheme
///
public IList Addresses { get; set; } =
new List();
public class OnChainPaymentMethodPreviewResultAddressItem
{
///
/// The key path relative to the account key path.
///
public string KeyPath { get; set; }
//The address generated at the key path
public string Address { get; set; }
}
}
}