btcpayserver/BTCPayServer/Views/Wallets/WalletsNavPages.cs
Andrew Camilleri 9b0d1a23dc
Decouple Pull payment from wallets (#2987)
* Decouple Pull payments from wallet

* Update _Nav.cshtml

* Fixes
2021-10-22 11:17:40 +09:00

13 lines
200 B
C#

namespace BTCPayServer.Views.Wallets
{
public enum WalletsNavPages
{
Index,
Send,
Transactions,
Rescan,
PSBT,
Settings,
Receive
}
}