Files
agologum/api/src/Models/Permissions.cs
Blitblank 9d5bae339e
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 8s
every gosh darn time
2026-04-22 19:35:12 -05:00

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";
}