btcpayserver/BTCPayServer/Views/Wallets/WalletsNavPages.cs

17 lines
269 B
C#
Raw Normal View History

2018-07-26 22:32:24 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Views.Wallets
{
public enum WalletsNavPages
{
Send,
2018-10-26 23:07:39 +09:00
Transactions,
2019-05-11 00:29:29 +09:00
Rescan,
PSBT,
Settings
2018-07-26 22:32:24 +09:00
}
}