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

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

namespace Duplicati.Library.Interface
{
    /// <summary>
    /// Backends that support reporting quota should implement this interface
    /// </summary>
    public interface IQuotaEnabledBackend : IBackend
    {
        /// <summary>
        /// Gets information about the quota on this backend.
        /// This may return null if the particular host implementation
        /// does not support quotas, but the backend does.
        /// </summary>
        IQuotaInfo Quota { get; }
    }
}