26 lines
644 B
C#
26 lines
644 B
C#
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";
|
|
}
|
|
}
|