mirror of
https://github.com/duplicati/duplicati.git
synced 2026-05-08 16:19:38 -04:00
10 lines
291 B
C#
10 lines
291 B
C#
namespace Duplicati.WebserverCore.Abstractions;
|
|
|
|
public class FileEntry
|
|
{
|
|
public string Path { get; set; } = "";
|
|
public string MD5 { get; set; } = "";
|
|
public string SHA256 { get; set; } = "";
|
|
public DateTime? LastWriteTime { get; set; }
|
|
public bool Ignore { get; set; }
|
|
} |