using Microsoft.Extensions.Configuration; namespace TEAMModelOS.SDK.Context.Configuration { 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; } } }