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

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