mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-30 12:14:23 +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; }
|
|
}
|