PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaShopRestApi/APIConfig.cs

13 lines
268 B
C#
Raw Permalink Normal View History

2023-05-03 22:54:42 +04:00
namespace PizzeriaShopRestApi
{
public class APIConfig
{
public static string? ShopPassword;
public static void LoadData(IConfiguration configuration)
{
ShopPassword = configuration["ShopAPIPassword"];
}
}
}