btcpayserver/BTCPayServer/Models/StoreViewModels/DerivationSchemeViewModel.cs

34 lines
887 B
C#
Raw Normal View History

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)>();
public string CryptoCode { get; set; }
2018-03-24 20:40:26 +09:00
[Display(Name = "Hint address")]
public string HintAddress { get; set; }
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; }
}
}