mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
20 lines
572 B
C#
20 lines
572 B
C#
using System.Collections.Generic;
|
|
|
|
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>();
|
|
}
|
|
}
|