using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pilz.Networking.CloudProviders.Nextcloud.Model.Cloud { public class UserQuota { /// /// Amount of free bytes left. /// public ulong Free { get; set; } /// /// Amount of already used bytes. /// public ulong Used { get; set; } /// /// Total amount of all bytes (free + used). /// public ulong Total { get; set; } /// /// Relative amount of used quota in percent. /// public float Relative { get; set; } /// /// Total amount of bytes available. /// public ulong Quota { get; set; } } }