mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-04 09:06:10 +02:00
13 lines
294 B
C#
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;
|
|
}
|
|
} |