btcpayserver/BTCPayServer/StorePolicies.cs
2023-05-26 23:49:32 +09:00

14 lines
331 B
C#

using System;
namespace BTCPayServer
{
public class StoreRoles
{
[Obsolete("You should check authorization policies instead of roles")]
public const string Owner = "Owner";
[Obsolete("You should check authorization policies instead of roles")]
public const string Guest = "Guest";
}
}