Files
ClubPenguinClient/MareSynchronos/FileCacheDB/FileCache.cs
Stanley Dimant da2b2701e8 actually start to bring structure into the project
make it resilent against restarts/reloads
remove all user interaction for resource gathering
compute hashes on first time file resolving and on updates of said file on resolving
2022-06-14 21:53:41 +02:00

16 lines
339 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MareSynchronos.FileCacheDB
{
public partial class FileCache
{
public string Hash { get; set; }
public string Filepath { get; set; }
public string LastModifiedDate { get; set; }
public int Version { get; set; }
}
}