14 lines
532 B
C#
14 lines
532 B
C#
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<AppVersionModel> PreviousVersions { get; set; }
|
|
}
|
|
} |