mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-15 05:44:15 +01:00
add periodic file scanner, parallelize downloads, fix transient files being readded when not necessary, fix disposal of players on plugin shutdown
This commit is contained in:
parent
25e87e6ec2
commit
0d7e173a97
20 changed files with 641 additions and 525 deletions
13
MareSynchronos/FileCacheDB/FileCacheEntity.cs
Normal file
13
MareSynchronos/FileCacheDB/FileCacheEntity.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#nullable disable
|
||||
|
||||
|
||||
namespace MareSynchronos.FileCacheDB
|
||||
{
|
||||
public partial class FileCacheEntity
|
||||
{
|
||||
public string Hash { get; set; }
|
||||
public string Filepath { get; set; }
|
||||
public string LastModifiedDate { get; set; }
|
||||
public int Version { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue