mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-13 15:34:14 +01:00
13 lines
297 B
C#
13 lines
297 B
C#
#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; }
|
|
}
|
|
}
|