btcpayserver/BTCPayServer/Views/Wallets/WalletsNavPages.cs

15 lines
237 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,
Rescan
2018-07-26 22:32:24 +09:00
}
}