diff --git a/c-sharp/Projects/DigitalBibleLibrary/DblDownloadableDataProvider.cs b/c-sharp/Projects/DigitalBibleLibrary/DblDownloadableDataProvider.cs index 1bfb1444db..5900d99279 100644 --- a/c-sharp/Projects/DigitalBibleLibrary/DblDownloadableDataProvider.cs +++ b/c-sharp/Projects/DigitalBibleLibrary/DblDownloadableDataProvider.cs @@ -19,6 +19,7 @@ private class DblResourceData( string DisplayName, string FullName, string BestLanguageName, + ResourceType Type, long Size, bool Installed, bool UpdateAvailable, @@ -29,6 +30,7 @@ string ProjectId public string DisplayName { get; set; } = DisplayName; public string FullName { get; set; } = FullName; public string BestLanguageName { get; set; } = BestLanguageName; + public string Type { get; set; } = Type.ToString(); public long Size { get; set; } = Size; public bool Installed { get; set; } = Installed; public bool UpdateAvailable { get; set; } = UpdateAvailable; @@ -113,6 +115,7 @@ private List GetDblResources(JsonElement _ignore) resource.DisplayName, resource.FullName, resource.BestLanguageName, + resource.Type, resource.Size, resource.Installed, resource.IsNewerThanCurrentlyInstalled(),