Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IFileEntry.cs « Volumes « Main « Library « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8be20f37b1dcc9e764474aef4eb9f66a00ae83ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Duplicati.Library.Main.Volumes
{
    public interface IFileEntry
    {
        FilelistEntryType Type { get; }
        string TypeString { get; }
        string Path { get; }
        string Hash { get; }
        long Size { get; }
        DateTime Time { get; }
        string Metahash { get; }
        string Metablockhash { get; }
        long Metasize { get; }
        string Blockhash { get; }
        long Blocksize { get; }
        IEnumerable<string> BlocklistHashes { get; }
        IEnumerable<string> MetaBlocklistHashes { get; }
    }
}