mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
8a7470500a
fixes #4116
18 lines
556 B
C#
18 lines
556 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels;
|
|
|
|
public class StoreDashboardViewModel
|
|
{
|
|
public string StoreId { get; set; }
|
|
public string CryptoCode { get; set; }
|
|
public string StoreName { get; set; }
|
|
public bool WalletEnabled { get; set; }
|
|
public bool LightningEnabled { get; set; }
|
|
public bool LightningSupported { get; set; }
|
|
public bool IsSetUp { get; set; }
|
|
public List<AppData> Apps { get; set; } = new();
|
|
public BTCPayNetworkBase Network { get; set; }
|
|
}
|