mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
20 lines
393 B
C#
20 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|