From f6e59ce20c816ca1847833de2c710b35b10a089b Mon Sep 17 00:00:00 2001 From: halgari Date: Mon, 16 Dec 2024 08:42:39 -0700 Subject: [PATCH] Update doc strings to better explain the value sizes --- .../NexusMods.Abstractions.Steam/DTOs/ManifestInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Abstractions/NexusMods.Abstractions.Steam/DTOs/ManifestInfo.cs b/Abstractions/NexusMods.Abstractions.Steam/DTOs/ManifestInfo.cs index 8c48741cb..e2aeb3c6d 100644 --- a/Abstractions/NexusMods.Abstractions.Steam/DTOs/ManifestInfo.cs +++ b/Abstractions/NexusMods.Abstractions.Steam/DTOs/ManifestInfo.cs @@ -15,12 +15,12 @@ public class ManifestInfo public required ManifestId ManifestId { get; init; } /// - /// The size of the downloaded files + /// The size of the downloaded files, decompressed /// public required Size Size { get; init; } /// - /// The size of the files on the CDN + /// The size of the files, compressed /// public required Size DownloadSize { get; init; } }