namespace Nop.Plugin.Misc.FruitBankPlugin.Models.App { public class AppDownloadModel { public string CurrentVersion { get; set; } public string DownloadUrl { get; set; } public string FileName { get; set; } // Add this public long FileSizeBytes { get; set; } public string FileSizeFormatted { get; set; } public DateTime ReleaseDate { get; set; } public string Changelog { get; set; } public List PreviousVersions { get; set; } } }