yavsc/src/Yavsc.Blogs/Constants.cs
Paul Schneider 1c2e1760b0
Some checks failed
Dotnet build and test / build (pull_request) Failing after 5m11s
refacto + test fixes
2026-08-28 21:33:11 +01:00

8 lines
203 B
C#

namespace Yavsc.Blogs;
public static class BlogConstants
{
public const string AdminRole = "Admin";
public const string ModeratorRole = "Moderator";
public const string UserRole = "User";
}