namespace Pilz.Net.CloudProviders.Nextcloud.Client.Cloud.Model;
public class UserQuota
{
///
/// Amount of free bytes left.
///
public long Free { get; set; }
///
/// Amount of already used bytes.
///
public long Used { get; set; }
///
/// Total amount of all bytes (free + used).
///
public long Total { get; set; }
///
/// Relative amount of used quota in percent.
///
public float Relative { get; set; }
///
/// Total amount of bytes available.
///
public long Quota { get; set; }
}