renaming of FileCache

This commit is contained in:
Stanley Dimant
2022-10-03 19:34:30 +02:00
parent 260c4a48ee
commit f68c52d0b0
3 changed files with 19 additions and 19 deletions

View File

@@ -6,14 +6,14 @@ using System.Globalization;
namespace MareSynchronos.FileCache;
public class FileCache
public class FileCacheEntity
{
public string ResolvedFilepath { get; private set; } = string.Empty;
public string Hash { get; set; }
public string PrefixedFilePath { get; init; }
public string LastModifiedDateTicks { get; set; }
public FileCache(string hash, string path, string lastModifiedDateTicks)
public FileCacheEntity(string hash, string path, string lastModifiedDateTicks)
{
Hash = hash;
PrefixedFilePath = path;