mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
10 lines
262 B
C#
10 lines
262 B
C#
|
namespace BTCPayServer.Models.StoreViewModels;
|
||
|
|
||
|
public class StoreDashboardViewModel
|
||
|
{
|
||
|
public string StoreId { get; set; }
|
||
|
public string StoreName { get; set; }
|
||
|
public bool WalletEnabled { get; set; }
|
||
|
public bool LightningEnabled { get; set; }
|
||
|
}
|