mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 22:17:22 +01:00
renaming of FileCache
This commit is contained in:
parent
260c4a48ee
commit
f68c52d0b0
3 changed files with 19 additions and 19 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue