Mango.Nop.Plugins/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/App/AppVersionModel.cs

13 lines
360 B
C#

namespace Nop.Plugin.Misc.FruitBankPlugin.Models.App
{
public class AppVersionModel
{
public string Version { get; set; }
public string DownloadUrl { get; set; }
public string FileName { get; set; } // Add this
public string FileSizeFormatted { get; set; }
public DateTime ReleaseDate { get; set; }
}
}