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
16 lines
339 B
C#
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; }
|
|
}
|
|
}
|