mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-25 09:54:21 +01:00
15 lines
237 B
C#
15 lines
237 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Views.Wallets
|
|
{
|
|
public enum WalletsNavPages
|
|
{
|
|
Send,
|
|
Transactions,
|
|
Rescan
|
|
}
|
|
}
|