namespace MediaBrowser.Model.System; /// /// Contains information about a specific folder. /// public record FolderStorageInfo { /// /// Gets the path of the folder in question. /// public required string Path { get; init; } /// /// Gets the free space of the underlying storage device of the . /// public long FreeSpace { get; init; } /// /// Gets the used space of the underlying storage device of the . /// public long UsedSpace { get; init; } /// /// Gets the kind of storage device of the . /// public string? StorageType { get; init; } /// /// Gets the Device Identifier. /// public string? DeviceId { get; init; } }