2023-12-16 20:25:12 +03:30
|
|
|
|
namespace NetinaShop.Infrastructure.Models;
|
|
|
|
|
|
|
|
|
|
|
|
public static class DirectoryAddress
|
|
|
|
|
|
{
|
|
|
|
|
|
private static string _baseDire = $"{Directory.GetCurrentDirectory()}/wwwroot";
|
2024-04-03 10:40:41 +03:30
|
|
|
|
public static string BaseDire = _baseDire ;
|
2023-12-16 20:25:12 +03:30
|
|
|
|
public static string Logs = $"{_baseDire}/logs";
|
|
|
|
|
|
}
|