6 lines
228 B
C#
6 lines
228 B
C#
|
|
namespace DocuMed.Infrastructure.Models;
|
|||
|
|
public static class DirectoryAddress
|
|||
|
|
{
|
|||
|
|
private static readonly string BaseDire = $"{Directory.GetCurrentDirectory()}/wwwroot";
|
|||
|
|
public static string Logs = $"{BaseDire}/logs";
|
|||
|
|
}
|