mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-25 09:54:21 +01:00
13 lines
266 B
C#
13 lines
266 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Views.Server
|
|
{
|
|
public enum ServerNavPages
|
|
{
|
|
Index, Users, Emails, Policies, Theme, Services, Maintenance, Logs, Files
|
|
}
|
|
}
|