mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
9 lines
262 B
C#
9 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; }
|
|
}
|