mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
14 lines
331 B
C#
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";
|
|
}
|
|
}
|