2024-02-26 12:37:42 +03:30
|
|
|
|
namespace HiVakil.Domain.Models.Claims;
|
|
|
|
|
|
|
|
|
|
|
|
public static class ApplicationPermission
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string ManageBlogs = nameof(ManageBlogs);
|
|
|
|
|
|
public const string ViewBlogs = nameof(ManageBlogs);
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-02-29 17:07:48 +03:30
|
|
|
|
public const string ManageBlogCategories = nameof(ManageBlogCategories);
|
|
|
|
|
|
public const string ViewBlogCategories = nameof(ViewBlogCategories);
|
2024-02-26 12:37:42 +03:30
|
|
|
|
}
|