mirror of
https://github.com/Stone-Red-Code/HyperbolicDownloader.git
synced 2026-09-06 15:56:22 +02:00
Upgrade project to .NET 8
This commit is contained in:
@@ -1,13 +1,7 @@
|
||||
namespace HyperbolicDownloaderApi.FileProcessing;
|
||||
|
||||
public class PrivateHyperFileInfo
|
||||
public class PrivateHyperFileInfo(string hash, string filePath)
|
||||
{
|
||||
public string Hash { get; set; }
|
||||
public string FilePath { get; set; }
|
||||
|
||||
public PrivateHyperFileInfo(string hash, string filePath)
|
||||
{
|
||||
Hash = hash;
|
||||
FilePath = filePath;
|
||||
}
|
||||
public string Hash { get; set; } = hash;
|
||||
public string FilePath { get; set; } = filePath;
|
||||
}
|
||||
Reference in New Issue
Block a user