mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
22 lines
445 B
C#
22 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer
|
|
{
|
|
public class StoreRoles
|
|
{
|
|
public const string Owner = "Owner";
|
|
public const string Guest = "Guest";
|
|
public static IEnumerable<String> AllRoles
|
|
{
|
|
get
|
|
{
|
|
yield return Owner;
|
|
yield return Guest;
|
|
}
|
|
}
|
|
}
|
|
}
|