26 lines
		
	
	
		
			631 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			631 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Core.Thalos.BuildingBlocks
 | |
| {
 | |
|     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";
 | |
|     }
 | |
| }
 |