btcpayserver/BTCPayServer/StorePolicies.cs

20 lines
393 B
C#
Raw Normal View History

2020-06-28 21:44:35 -05:00
using System;
2018-03-23 16:24:57 +09:00
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;
}
}
}
}