16 lines
320 B
C#
16 lines
320 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Duplicati.Library.Main.Database
|
|
{
|
|
public interface ILocalFileEntry
|
|
{
|
|
string Path { get; }
|
|
long Length { get; }
|
|
string Hash { get; }
|
|
string Metahash { get; }
|
|
}
|
|
}
|