Add a "Wallet" menu

This commit is contained in:
nicolas.dorier
2018-07-26 22:32:24 +09:00
parent 22307b8a2b
commit ad1307746c
25 changed files with 684 additions and 357 deletions

View File

@@ -18,6 +18,7 @@ namespace BTCPayServer.Models.StoreViewModels
{
public string Crypto { get; set; }
public string Value { get; set; }
public WalletId WalletId { get; set; }
}
public StoreViewModel()

View File

@@ -34,10 +34,6 @@ namespace BTCPayServer.Models.StoreViewModels
get;
set;
}
public string[] Balances
{
get; set;
}
}
}
}

View File

@@ -1,19 +0,0 @@
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 WalletModel
{
public string ServerUrl { get; set; }
public string CryptoCurrency
{
get;
set;
}
}
}