Files
HyperbolicDownloader/HyperbolicDownloaderApi/FileProcessing/PrivateHyperFileInfo.cs
T
2023-12-14 19:00:47 +01:00

7 lines
219 B
C#

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