2018-01-08 22:45:09 +09:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
|
|
|
|
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
|
|
|
{
|
|
|
|
|
public class DerivationSchemeViewModel
|
|
|
|
|
{
|
|
|
|
|
public DerivationSchemeViewModel()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
public string DerivationScheme
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<(string KeyPath, string Address)> AddressSamples
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
} = new List<(string KeyPath, string Address)>();
|
|
|
|
|
|
2018-03-21 02:48:11 +09:00
|
|
|
|
public string CryptoCode { get; set; }
|
2018-03-24 20:40:26 +09:00
|
|
|
|
[Display(Name = "Hint address")]
|
|
|
|
|
public string HintAddress { get; set; }
|
2018-02-07 21:59:16 +09:00
|
|
|
|
public bool Confirmation { get; set; }
|
|
|
|
|
|
2018-02-13 03:27:36 +09:00
|
|
|
|
public string ServerUrl { get; set; }
|
2018-03-24 20:40:26 +09:00
|
|
|
|
public string StatusMessage { get; internal set; }
|
2018-01-08 22:45:09 +09:00
|
|
|
|
}
|
|
|
|
|
}
|