Files
HyperbolicDownloader/HyperbolicDownloaderApi/FileProcessing/PrivateHyperFileInfo.cs
T
Stone_Red cf7f952012 Improve code structure
- Add separate API project
- Add notification system
2022-02-24 22:56:45 +01:00

13 lines
294 B
C#

namespace HyperbolicDownloaderApi.FileProcessing;
public class PrivateHyperFileInfo
{
public string Hash { get; set; }
public string FilePath { get; set; }
public PrivateHyperFileInfo(string hash, string filePath)
{
Hash = hash;
FilePath = filePath;
}
}