2023-05-26 16:49:32 +02:00
|
|
|
|
2020-06-28 21:44:35 -05:00
|
|
|
using System;
|
2018-03-23 16:24:57 +09: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 16:24:57 +09:00
|
|
|
public const string Owner = "Owner";
|
2023-05-26 16:49:32 +02:00
|
|
|
[Obsolete("You should check authorization policies instead of roles")]
|
2024-03-19 14:58:33 +01:00
|
|
|
public const string Manager = "Manager";
|
|
|
|
[Obsolete("You should check authorization policies instead of roles")]
|
|
|
|
public const string Employee = "Employee";
|
|
|
|
[Obsolete("You should check authorization policies instead of roles")]
|
2018-03-23 16:24:57 +09:00
|
|
|
public const string Guest = "Guest";
|
|
|
|
}
|
|
|
|
}
|