mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 22:58:28 +01:00
21 lines
555 B
C#
21 lines
555 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.AspNetCore.Http;
|
|
using NBitcoin;
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
{
|
|
public class RecoverySeedBackupViewModel
|
|
{
|
|
public string CryptoCode { get; set; }
|
|
public string Mnemonic { get; set; }
|
|
public string Passphrase { get; set; }
|
|
public bool IsStored { get; set; }
|
|
public string ReturnUrl { get; set; }
|
|
|
|
public string[] Words
|
|
{
|
|
get => Mnemonic.Split(" ");
|
|
}
|
|
}
|
|
}
|