Artifactory

Switching to nginx download
Bug fix - GetHeaderId
This commit is contained in:
2024-08-08 12:45:35 -07:00
parent 4c513d6e7e
commit 6b6ccb6a42
22 changed files with 1386 additions and 38 deletions

View File

@ -0,0 +1,23 @@
namespace Adaptation.FileHandlers.DownloadTXTFile;
internal class NginxFileSystem
{
protected readonly string _Name;
protected readonly string _Type;
protected readonly string _MTime;
protected readonly float _Size;
public string Name => _Name;
public string Type => _Type;
public string MTime => _MTime;
public float Size => _Size;
public NginxFileSystem(string name, string type, string mTime, float size)
{
_Name = name;
_Type = type;
_MTime = mTime;
_Size = size;
}
}