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