7 lines
222 B
C#
7 lines
222 B
C#
|
|
namespace HiVakil.Infrastructure.Models;
|
|||
|
|
|
|||
|
|
public static class DirectoryAddress
|
|||
|
|
{
|
|||
|
|
private static string _baseDire = $"{Directory.GetCurrentDirectory()}/wwwroot";
|
|||
|
|
public static string Logs = $"{_baseDire}/logs";
|
|||
|
|
}
|