Files
btcpayserver/BTCPayServer/Models/StoreViewModels/WalletModel.cs
2018-03-22 01:07:11 +09:00

20 lines
416 B
C#

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;
}
}
}