mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
11 lines
306 B
C#
11 lines
306 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; }
|
||
|
public bool AltcoinsBuild { get; set; }
|
||
|
}
|