using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Duplicati.Library.Interface { /// /// Backends that support reporting quota should implement this interface /// public interface IQuotaEnabledBackend : IBackend { /// /// 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. /// IQuotaInfo Quota { get; } } }