Upgrade project to .NET 8

This commit is contained in:
Stone_Red
2023-12-14 19:00:47 +01:00
parent 9de227050a
commit 30ce61cc41
20 changed files with 53 additions and 137 deletions
@@ -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;
}