Pavel Vesely 3e1c371be6 PermissionNames constants
Replace magic strings in authorisation calls
2020-03-14 09:21:26 +01:00

11 lines
261 B
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Oqtane.Shared
{
public class PermissionNames
{
public const string View = "View";
public const string Edit = "Edit";
public const string Delete = "Delete";
public const string Utilize = "Utilize";
}
}