Mike Phares 6b6ccb6a42 Artifactory
Switching to nginx download
Bug fix - GetHeaderId
2024-08-08 12:45:35 -07:00

23 lines
551 B
C#

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;
}
}