mirror of
https://github.com/Caraxi/mare.client.git
synced 2026-01-01 12:43:39 +01:00
12 lines
290 B
C#
12 lines
290 B
C#
#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; }
|
|
}
|
|
}
|