Add project files.

This commit is contained in:
Sergio Matias Urquin
2025-04-29 18:57:20 -06:00
parent 62e9799537
commit d5925a6476
44 changed files with 2716 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
namespace Core.Cerberos.Adapters.Common.Constants
{
public static class CollectionNames
{
/// <summary>
/// The User collection name.
/// </summary>
public const string User = "Users";
/// <summary>
/// The Role collection name.
/// </summary>
public const string Role = "Roles";
/// <summary>
/// The Permission collection name.
/// </summary>
public const string Permission = "Permissions";
/// <summary>
/// The Module collection name.
/// </summary>
public const string Module = "Modules";
}
}