mirror of
https://github.com/azaion/admin.git
synced 2026-04-23 06:16:34 +00:00
121052a3ef
add security encryption and hashing: WIP add endpoints: register user, get and save resources add db main operations, User entity
7 lines
194 B
C#
7 lines
194 B
C#
namespace Azaion.Common.Configs;
|
|
|
|
public class ResourcesConfig
|
|
{
|
|
public string ResourcesFolder { get; set; } = null!;
|
|
public Dictionary<string, string> Resources { get; set; } = null!;
|
|
} |