btcpayserver/BTCPayServer/Models/WalletViewModels/ListWalletsViewModel.cs

23 lines
635 B
C#
Raw Normal View History

2020-06-28 21:44:35 -05:00
using System;
2018-07-26 22:32:24 +09:00
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.WalletViewModels
{
public class ListWalletsViewModel
{
public class WalletViewModel
{
public string StoreName { get; set; }
public string StoreId { get; set; }
public string CryptoCode { get; set; }
public string Balance { get; set; }
public bool IsOwner { get; set; }
public WalletId Id { get; set; }
}
public List<WalletViewModel> Wallets { get; set; } = new List<WalletViewModel>();
}
}