···11+namespace Iceshrimp.Shared.Schemas.Web;
22+33+public class DriveStatusResponse
44+{
55+ public required int FileCount { get; set; }
66+77+ /// <summary>
88+ /// Sum of the size of every file in the user's Drive in bytes
99+ /// </summary>
1010+ public required long UsedSize { get; set; }
1111+}