btcpayserver/BTCPayServer/StorePolicies.cs

14 lines
331 B
C#
Raw Normal View History

2023-05-26 16:49:32 +02:00
2020-06-29 04:44:35 +02:00
using System;
2018-03-23 08:24:57 +01:00
namespace BTCPayServer
{
public class StoreRoles
{
2023-05-26 16:49:32 +02:00
[Obsolete("You should check authorization policies instead of roles")]
2018-03-23 08:24:57 +01:00
public const string Owner = "Owner";
2023-05-26 16:49:32 +02:00
[Obsolete("You should check authorization policies instead of roles")]
2018-03-23 08:24:57 +01:00
public const string Guest = "Guest";
}
}