2024-05-17 06:06:37 +04:00

13 lines
266 B
C#

namespace MotorPlantRestApi
{
public class APIConfig
{
public static string? ShopPassword;
public static void LoadData(IConfiguration configuration)
{
ShopPassword = configuration["ShopAPIPassword"];
}
}
}