All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 8s
10 lines
337 B
C#
10 lines
337 B
C#
|
|
// this is a static data model; it doesnt exist in a database (yet)
|
|
// lol no dynamic permissions would mean endpoint authorization gates need to be dynamic too
|
|
|
|
public static class Permission {
|
|
|
|
public const string SensitiveData_Read = "SensitiveData.Read";
|
|
public const string SensitiveData_Modify = "SensitiveData.Modify";
|
|
|
|
} |