using Microsoft.Extensions.Configuration; namespace HL_FristAidPlatform_Token { public class BaseConfigModel { /// /// /// public static IConfiguration Configuration { get; set; } /// /// /// public static string ContentRootPath { get; set; } /// /// /// public static string WebRootPath { get; set; } /// /// /// /// /// /// public static void SetBaseConfig(IConfiguration config, string contentRootPath, string webRootPath) { Configuration = config; ContentRootPath = contentRootPath; WebRootPath = webRootPath; } } }